// safari 1x alert
function AppleBrowserInfo(userAgent) {

	this.AppleWebkitVersionChecker = function(){
		var num = this.ua.match(new RegExp("AppleWebKit/[0-9]{1,4}(\.[0-9]{1,2})?"));
		return ( num == null ) ? -1 : parseFloat(String(num).replace("AppleWebKit/",""));
	}

	this.ua = (userAgent) ? userAgent : navigator.userAgent;

	this.AppleWebkitVersion = this.AppleWebkitVersionChecker();
	if( this.AppleWebkitVersion ){
		this.Safari1x = ( this.AppleWebkitVersion <= 399 && this.AppleWebkitVersion > 0 );
	}

}

var apb = new AppleBrowserInfo();
if( apb.Safari1x ){
	document.write('<div id="safari_alert" style="width: 350px;margin-bottom:10px;"><div style="border: solid 1px #ff9900;padding:5px;"><p style="font-size: 12px;line-height: 15px;margin:0px;">Some browsers may affect the performance of this website and may notdisplay all elements of this website correctly. We recommend using one of the browsers listed <a href="/eng/common/user_env/index.html" style="color:333399;" target="_blank">here.</a></p></div></div>');
}


