// Script for Rameshwar.com
//				Author: Amit Kumar Sharma, UnGray
//					amit@ungray.com


function toggle(object)
{

	if (document.all)
	{
	  var the_object = document.all(object).style;

		if (the_object.visibility == "hidden")
		 {the_object.visibility = "visible";}
		else
		 {the_object.visibility = "hidden";}

	  }
	else if (document.layers)
	{
	  var the_object = document.layers[object].style;
	  the_object.visibility = "show";
	  }
}

