
function isInternetExplorer()
{
	var userAgent = navigator.userAgent.toLowerCase();
	if (document.all && userAgent.indexOf('msie')!=-1)
	{
		return true;
	}
	else
	{
		return false;
	}
}


