/*
    
    Date: 3/15/03	

    This Code and Idea is Copyright 2003 SonnySales.com
    GetThatMenu.com is a division of SonnySales.com. By no means
    may this code or idea be implemented without written authority
    by SonnySales or its divisions.

*/






function graynews(){
	
	document.newslist.subnews.disabled = true;
	//document.theform.subb.style.visibility="hidden"; //set to hidden

}

/////////////////////////////////////

function isNumeric(val){

return(parseFloat(val,10)==(val*1));

}
/////////////////////////////////////////




function checknewsform() {
	var missing = "";
	var count = 0;
		

if ( !(/^[^@]+@[^@]+(\.[^@]+)+$/.test(document.newslist.email.value))) { missing +="\n Email address"; };

	if (missing !="") {
		missing = "Please enter the following information: \n" + missing;
		alert(missing);
		return false;
	} else {
		
		return true; 
		
	}
}


