function validateEmail(Email) {
	Email = Email.toLowerCase();
	var match = 0;
	switch(Email) {
		case 'msn.com': match = 1;
		case 'yahoo.com': match = 1;
		case 'gmail.com': match = 1;
		case 'mindspring.com': match = 1;
		case 'verizon.net': match = 1;
		case 'aol.com': match = 1;
		case 'earthlink.net': match = 1;
		case 'comcast.net': match = 1;
		case 'hotmail.com': match = 1;
		case 'rediffmail.com': match = 1;
		case 'sbcglobal.net': match = 1;
		case 'cox.net': match = 1;
		case 'telus.net': match = 1;
		case 'optonline.net': match = 1;
		case 'bpserver.com': match = 1;
		case 'ceridian.com': match = 1;
		case 'corprofit.com': match = 1;
		case 'methodware.com': match = 1;
		case 'gcrmsolutions.com': match = 1;
		case 'horwathsoftware.co.uk': match = 1;
		case 'hyperknowledge.com': match = 1;
		case 'centerprise.com': match = 1;
		case 'riskshield.com': match = 1;
		case 'paisleyconsulting.com': match = 1;
		case 'openpages.com': match = 1;
		case 'aptsoft.com': match = 1;
		case 'syntexsolutions.com': match = 1;
		case 'neteconomy.com': match = 1;
		case 'swordrisk.com': match = 1;
		case 'compliance360.com': match = 1;
	}
	
	if(match) {
		//document.getElementById('gbemail').value="b";
		document.getElementById('00N40000001Lu9y').value="b";
		document.getElementById('retURL').value="http://www.logicmanager.com/contents/download/rr.php";
	}
	
	//alert(document.getElementById('gbemail').value);
	//alert(document.getElementById('retURL').value);
	
	document.getElementById('register').submit();

}