var sQuote='"';

function fCheckEmail(sIn){
    var first=sIn.indexOf("@");
    if( (first==-1)||(sIn.substring(0, first)=='')||(sIn.substring(first+1, sIn.length)=='')){
        return false;
    };
    if(sIn.substring(first+1, sIn.length).indexOf(".")==-1){
        return false;
    };
    return true;
};

function fOnFieldBlur(objField){
    re= new RegExp(sQuote,'gi');
    objField.value=objField.value.replace(re,'');
};

function fValidForm(){
    if (fCheckEmail(document.frmSubscribe.email.value)==false){
       alert('Invalid email address was entered!');
       return false;
    };
		
		if ((document.frmSubscribe.name.value == '') || (document.frmSubscribe.name.value == 'enter your full name')) {
			alert('Invalid full name was entered!');
			return false;
		};
    return true;
};

function DLPopUp() {
	window.open('http://info.hirekogolf.com/modules/whereBuy.php','dlResults','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width=555,height=408,left=50, top=50,screenX=50,screenY=50');
};
