function search(str)
{
	 window.open("../search.htm?"+ str)		;
}function show(id)
{
	obj=document.getElementById("div"+id);
	  if (obj)
	  {
		obj.style.display="";
	  }
}
	
function hide(id)
{
	 
	obj=document.getElementById("div"+id);
	if (obj)
	{
		obj.style.display="none";
		}
}