// JavaScript Document
function links_cms( id )
{
	window.open('links_cms.php?id='+id,'','scrollbars=no,menubar=no,height=550,width=780,resizable=no,toolbar=no,location=no,status=no');	
}

function show_hideDisplay(id, action)
{	
	if(document.all && !document.getElementById)
	{
		if(action == "show")
			document.all[id].style.display = 'block';
		
		if(action == "hide")
			document.all[id].style.display = 'none';
		return true;	
	}
	
	if(document.layers && !document.getElementById)
	{
		if(action == "show")
			document.layers[id].display = 'block';
			
		if(action == "hide")
			document.layers[id].display = 'none';
		return true;
	}
	
	if(document.getElementById)
	{
		if(action == "show")
			document.getElementById(id).style.display = 'block';
			
		if(action == "hide")
			document.getElementById(id).style.display = 'none';
		return true;
	}
	
	alert("PLEASE UPGRADE YOUR BROWSER.");
	return false;
}