function isIE(){
	var browser=navigator.appName;
	if (browser.indexOf("Explorer") == -1)
		return false;
	else
		return true;
}
	
