// JavaScript Document
//function will perform the location roll-overs
function doAction(val, id)
{
	//alert("val--"+val+" & id--"+id);
	if(val == "show")
	{
		document.getElementById(id).style.display = 'block';
	}
	else
	{
		document.getElementById(id).style.display = 'none';
	}
}