// JavaScript Document
function Validate() {
	     if (document.frmContact.txtName.value == "")
		{
			alert("Please enter your name.");
			return false;
		}
		
		if (document.frmContact.txtPhone.value == "")
		{
			alert("Please enter your phone number.");
			return false;
		}
		
		if (document.frmContact.txtEmail.value == "")
		{
			alert("Please enter your email address.");
			return false;
		}
		
		if (document.frmContact.txtComments.value == "")
		{
			alert("Please enter your comments.");
			return false;
		}
		
		return true;
}

function popUp(URL, width, height) {
	day = new Date();
	id = day.getTime();
	if(width >= 640) {
		width = 640;
	}
	if(height >= 480) {
		height = 480;
	}
	eval("page" + id + " = window.open('includes/show_image.php?image=../images/stored/"+URL+"&width="+width+"', '" + id + "', 'toolbar=0, scrollbars=yes, location=0, statusbar=0, menubar=0, resizable=0, width=" + (width+40) + ", height=" + (height+40) + "');");
}
