// Browser Detection For CSS
// links to different stylesheets in /includes/css
// based upon browser type
// defaults to the nonIE css file.

var IECss = "ss.css";
var nonIECss = "ss.css";
cssLine = '<link rel="stylesheet" type="text/css" href="'; 

if (navigator.appName.indexOf("Explorer") >=0) {
  cssLine += IECss; 
} else {
  cssLine += nonIECss;
}

cssLine += '" />';

document.write(cssLine);

function CheckEmail(sEmail)
{
	var emailExp = "^[\\w-_\.]*[\\w-_\.]\@[\\w]\.+[\\w]+[\\w]$";
	var regex = new RegExp(emailExp);
	if(regex.test(sEmail))
		return true;
	
	alert("Invalid email address.  Please use the format: smartbuyer@buysafe.com.");
	return false;
}
