function isBrowser_Win_IE()
{
	// stabilisce se il browser è IE su Win
	if(navigator.appName.indexOf("Microsoft") != -1)
		return true;
	else
		return false;
}
