// JavaScript Document
 function location_details(showhide,id)
 {
 	if(showhide == "show")
 	{
		eval("document.getElementById('location_details_" + id + "').style.display ='block'");		
		eval("document.getElementById('location_details_" + id + "').style.visibility ='visible'");		   
		
	}
	else if(showhide == "hide")
	{
      	eval("document.getElementById('location_details_" + id + "').style.display ='none'");
		eval("document.getElementById('location_details_" + id + "').style.visibility ='hidden'");
	}
 }