// JavaScript Document
var preVal;
preVal= "";

function expandContent(id)
{  	
	if(preVal!="" && preVal!=id)
	{
	    document.getElementById("img_"+preVal).src="image/info_off.jpg";
		document.getElementById("cont_"+preVal).className="cont_hidden";
	}
	val=((document.getElementById("cont_"+id).className)=="cont_hidden")? true:false;
	if(val)
	{
		
		document.getElementById("img_"+id).src="image/info_off.jpg";
		document.getElementById("cont_"+id).className="cont_visible";
	}
	else
	{
		document.getElementById("img_"+id).src="image/info_on.jpg";
		document.getElementById("cont_"+id).className="cont_hidden";
	}
	preVal=id;
}
 
 
 //popup start
function MM_openBrWindow(theURL,winName,features) { //v2.0
	//alert(features);
  window.open(theURL,winName,features);
}
//popup ends
