// JavaScript Document

//Function to call a pop up window
function popUpwindow(theURL, winName, features)	{	window.open(theURL, winName, features);	}

//Function to quickly check elements in form


//Function to show and hide elements
function toggleHidden(x)
{
	if (document.getElementById(x).style.display == 'block')	
		{document.getElementById(x).style.display = 'none';}
	else 
		{document.getElementById(x).style.display = 'block';}
}


function JavaMessage(x){alert(x);}

function clearMe(el)
	{
	if(el.defaultValue == el.value) el.value = " "
	}
