///////////////////////////////////////////////////////////////////////////////
function CheckContactForm()
	{
	var tmpValid = "0"
		if (isWhitespace(document.form1.Name.value))
				{
				alert("Please Enter Your Name")
				document.form1.Name.focus();
				tmpValid++
				}
		
				
		else if ((isWhitespace(document.form1.email.value)))
				{
				alert("Please Enter a valid email address")
				document.form1.email.focus();
				tmpValid++
				}
		
			
				
			if (tmpValid == "0") {
				//document.getElementById("inpContent").value = oEdit1.getHTMLBody();
				return (true);
			}
			
			else {
				
				return (false)
				}
		}
		
			///////////////////////////////////////////////////////////////////
//this function opens and center a window
	function winBRopen(theURL, Name, popW, popH, scroll, resize) { // V 1.0
	var winleft = (screen.width - popW) / 2;
	var winUp = (screen.height - popH) / 2;
	winProp = 'width='+popW+',height='+popH+',left='+winleft+',top='+winUp+',scrollbars='+scroll+',resizable='+resize+'';
	Win = window.open(theURL, Name, winProp);
	Win.window.focus();
}