var remote = null;
function remoteLocation(loc) 
{
	window.open(loc,'TheRemote','width=700,height=650,resizable=yes,scrollbars=yes');
}

function Form_Validator(theForm)
{
	if (theForm.post_person.value == "" )
	{
		alert("Please fill in your name!");
		theForm.post_person.focus();
		return (false);
	}
	if (theForm.post_contact.value == "" )
	{
		alert("Please fill in your contact!");
		theForm.post_contact.focus();
		return (false);
	}
}