function isIE () {
	var name = navigator.appName;
	if (name.indexOf("Microsoft",0) > -1)
		return true;
	else
		return false;
}