function showHideContent(idParam){
	var x=document.getElementById(idParam);
	if(x.style.display=="block")
	{
		document.getElementById(idParam).style.display="none";	
	}
	else
	{
		document.getElementById(idParam).style.display="block";	
	}
}

function popUp(url,param){
		
		window.open(url,'popUp',param);
	
}