function showHide(div_showhide, btn_showhide)
{
	var div = document.getElementById(div_showhide);
	var btn = document.getElementById(btn_showhide);
	var showVal = 'true';
		
	if( div.style.display == 'none' ) 
    { 
    	div.style.display = 'block'; 
        btn.value="-"; 
    }// End if 
    else 
    { 
		//showVal = 'false';
        div.style.display = 'none'; 
        btn.value="+"; 
	}
}

function validate(text,contactform)
{
	var text = document.getElementById(text);
		
	if(text.value == '')
	{
		document.forms['contactform'][0].focus();
		//alert("Sorry you must enter a value.");
		//document.contactform['text'].focus();
		
	}
}

function sendform()
{
	alert("test");
}

function openAdmin()
{
	// Open admin tool into a window
	//window.open('./admin/admin.php','Admin',config='height=550,width=450, toolbar=yes, menubar=no, scrollbars=no, resizable=no,location=no, directories=no, status=no');
	window.open('./admin/admin.php');
}
