<!--
//JavaScript Document
//From jquery.validate.js (by joern), contributed by Scott Gonzalez: http://projects.scottsplayground.com/email_address_validation/
var emailRegEx = /^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i;


function newwindow(obj) {
	var newWindow = window.open(obj.getAttribute('href'), '_blank');
	newWindow.focus();
	return false;
}

function isValidEmail(sEmail) {
	
	  var reValidEmail = new RegExp(emailRegEx);
	  
	  if (reValidEmail.test(sEmail)) {
	    return true;
	  }
	  
	  return false;
	}


function leavesiteKGFS(obj)

{

	var confirmation = confirm("You are now leaving the Kogenate FS Web site.");



	if(confirmation)

	{

		var newWindow = window.open(obj.getAttribute('href'), '_blank');

		newWindow.focus();

		return false;

	}

	else

		return false;

}



function leavesite(obj)

{

	var confirmation = confirm("Please Note: You are about to temporarily leave the KogenateFS.com Web site by opening a new Web page. The site you are linking to, and any other site after visiting this site, is not controlled or endorsed by Bayer HealthCare, and we are not responsible for the content presented on that site.");



	if(confirmation)

	{

		var newWindow = window.open(obj.getAttribute('href'), '_blank');

		newWindow.focus();

		return false;

	}

	else

		return false;

}



function newwindow(obj)

{



	var newWindow = window.open(obj.getAttribute('href'), '_blank');

	newWindow.focus();

	return false;

}

//-->
