// returns true when browser is IE (hope so)
//
function isIE() {
	if ((document.all) && (navigator.appVersion.indexOf("MSIE") != -1)) return true;
	return false;	
}

