<!--

	function validateForm(strName, strEmail)
		{
			windowProperties = "toolbar=no, menubar=no, scrollbars=no, statusbar=no, resizable=no, location=no, directories=no, dependent=yes, "
			windowProperties = windowProperties + "statusbar=no, width=200, height=80, left=500, top=500"

			if (strName=="")
			{
				newWindow = window.open ("","", windowProperties)
				dialogOption = 1
				dialogBoxHTMLValidate()
				return false
			}

			if (strName=="Enter your name")
			{
				newWindow = window.open ("","", windowProperties)
				dialogOption = 1
				dialogBoxHTMLValidate()
				return false
			}
	
			if (strEmail=="Enter your email")
			{
				newWindow = window.open ("","", windowProperties)
				dialogOption = 2
				dialogBoxHTMLValidate()
				return false
			}
		}

	function dialogBoxHTMLValidate()
		{
			newWindow.document.write("<html><head><title>Missing Info:</title><style type='text/css'>")
			newWindow.document.write("body { background: white; }</style></head><body>")
			newWindow.document.write("<p style='color=rgb(100,100,100); font-size=11px'><font face='Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif'>")
			switch (dialogOption)
			{
				case 1: newWindow.document.write("Please enter your name...")
					break;
				case 2: newWindow.document.write("Please enter your email address...")
					break;
			}
			newWindow.document.write("</p><p align=center><form><input type=button value='OK' ")
			newWindow.document.write("style='width=80; color=rgb(100,100,100); background-color=#dfdfdf; font-size=11px;' onClick='window.close()'></form></p>")
			newWindow.document.write("</body></html>")
		}
//-->
