// detect and store browser and OS
top.isOpera = window.opera ? true : false;
top.isSafari = (document.childNodes) && (!document.all) && (!navigator.taintEnabled) && (!navigator.accentColorName) ? true : false;
top.isIE = (document.getElementById) && (document.all) && (!top.isOpera) ? true : false;
top.isNS = (document.getElementById) && (!document.all) && (!top.isSafari) ? true : false;
top.isMac = (navigator.userAgent.toUpperCase().indexOf("MAC") > -1) ? true : false;

//alert(top.isIE);
top.isIE5=false;
if (top.isIE){
	var appVersion=navigator.appVersion.match(/MSIE (\d\.\d)/)[1]
	if (top.isIE && appVersion<6 && !top.isMac){
		top.isIE5=true;
	}
}