var goContactFormPopupWindow;


function ContactFormPopupShow()
{
	if (!goContactFormPopupWindow || goContactFormPopupWindow.closed) {
		goContactFormPopupWindow = window.open('ContactFormPopup.htm', 'ContactformPopup', 
			'toolbar=no,location=no,directories=no,' +
			'status=no,scrollbars=auto,resizable=yes,left=20,top=20,' +
			'width=370,height=415');	
	}else{
		goContactFormPopupWindow.focus();
	}
}

function ContactPopupFormValidate(pvoDocument)
{
	var sMessage='';
	
	
	if(pvoDocument.getElementById('txtName').value==null ||
		pvoDocument.getElementById('txtName').value=='' )
		sMessage+= "Name required\n";
		
	if(pvoDocument.getElementById('txtPhone').value==null ||
		pvoDocument.getElementById('txtPhone').value=='' )
		sMessage+= "Phone required\n";
		
	if(pvoDocument.getElementById('txtEmail').value==null ||
		pvoDocument.getElementById('txtEmail').value=='' )
		sMessage+= "Email required\n";
		
	// If no message, allow form to submit.
	if(sMessage==''){
		alert("Thank You, " +
		pvoDocument.getElementById('txtName').value + 
		" for your interest in American Accents Furniture. " +
		"A representative will soon be in contact with you.");
		window.opener.location.href="index.htm";
		self.close()
		return true;
	}else{
		alert(sMessage);
		return false;
	}
}
