// JavaScript Document
function arrow_visibility(action, id)
{
	
	if(action=='show')
	{
		document.getElementById(id).style.visibility='visible';	
	}
	
	if(action=='hide')
	{
		document.getElementById(id).style.visibility='hidden';	
	}
}

function pop_up(page_id, width, height, attribute)
{
	window.open("index.php?p="+page_id, "", "width="+width+", height="+height+", "+attribute+"");
	
}

function relocate(url, name, method)
{
	if(method=='POST')
	{
		document.admin.submit();
	}
	if(method == 'GET')
	{
		//alert(document.admin[name].value);
		window.location = url+'&fa='+document.admin[name].value; 
		
		//document.admin[obj].value;	
	}
	//document.admin[name].value=val;
}