// JavaScript Document
function submitContactForm() {
		if(document.ContactForm.Name.value.length < 1) {
			alert("Your Name Is Required.");
			document.ContactForm.Name.focus();
			return;
		} else if(document.ContactForm.Email.value.length < 1) {
			alert("Your Email Address Is Required.");
			document.ContactForm.Email.focus();
			return;
		} else if(document.ContactForm.Message.value.length < 1) {
			alert("A Message Is Required.");
			document.ContactForm.Message.focus();
			return;
		} document.ContactForm.submit();
}

function submitNewsletterForm() {
		if(document.NewsletterForm.Email.value.length < 8) {
			alert("A Valid Email Is Required.");
			document.NewsletterForm.Email.focus();
			return;
		} document.NewsletterForm.submit();
}

//Disable right click script III- By Renigade (renigade@mediaone.net)
//For full source code, visit http://www.dynamicdrive.com

var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")

<!-- Begin
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+', toolbar=no, resizable=no'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
//  End -->
