
//###########################################################################//
//## This function Used to hide and Show the selected content
//## Developed By : Kashi
//## Developed By : 20-12-2006
//###########################################################################//

function hidetogal(valhid)
{
	var1=document.getElementById(valhid).style.display;
	if(var1=="none"){
		document.getElementById(valhid).style.display="";
	}
	else{
		document.getElementById(valhid).style.display="none";
	}
}

