function swapImage(prod_id, action) {
    var visibility = (action == "show" ? "visible" : "hidden");
    var backgroundColor = (action == "show" ? "#FFFFFF" : "#EFEFEF");
    

    var id		 = "table_" + prod_id
    var ObjTable = document.getElementById(id)
    
    if (ObjTable != null) {
		// onmouseover="this.style.backgroundColor='#FFFFFF'" onmouseout="this.style.backgroundColor='#EFEFEF'"    
	
		ObjTable.style.backgroundColor = backgroundColor;
	}
    
    
    
    var id		= "top_" + prod_id
    var ObjTop	= document.getElementById(id)
    
    if (ObjTop != null) {
		ObjTop.style.visibility = visibility;
	}

    var id		= "bot_" + prod_id
    var ObjBot	= document.getElementById(id)
    
    if (ObjBot != null) {
		ObjBot.style.visibility = visibility;
	}
}

// document.write ("<form name='cc'><textarea cols=70 rows=20 id=textarea1 name=textarea1>")
// document.write (showObject(ObjLink))
// document.write ("</textarea></form>")

function swapText(prod_id, action) {
    var color = (action == "show" ? "#FF7F00" : "" /* #0066CC */)

    var id		= prod_id
    var ObjLink	= document.getElementById(id)
    
    if (ObjLink != null) {
		
		//if (action == "show") {
			// ObjLink.focus();

			// ObjLink.className = '.text.a:hover'
			// ObjLink.className = '.text.a:hover'
			// ObjLink.onmouseover;
		//}
		// else {
			// ObjLink.blur();

			// ObjLink.className = '.text.a:link'
			// ObjLink.onmouseout;
		//}
		
		ObjLink.style.color=color;
	}
}
