// JavaScript Document


function init(){
	//INIZIALIZZAZIONE INTERVAL
	initInterval();	
	checkBrows();
	
}

var funSelected = null;

var functionAr = [];
var timer = null;
			
function initInterval() {
	if (!timer) timer = setInterval(intervalFunction,10);
}

function intervalFunction() {
  for (var i=functionAr.length; i--;) {
	if(functionAr[i]){
		new functionAr[i];
	}
  }
}


function checkBrows(){
	checkIEVersion()
	//alert(navigator.appName+"__"+navigator.appVersion)
		
	
	
}


function getInternetExplorerVersion()
// Returns the version of Windows Internet Explorer or a -1
// (indicating the use of another browser).
{
   var rv = -1; // Return value assumes failure.
   if (navigator.appName == 'Microsoft Internet Explorer')
   {
      var ua = navigator.userAgent;
      var re  = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
      if (re.exec(ua) != null)
         rv = parseFloat( RegExp.$1 );
   }
   return rv;
}

function checkIEVersion()
{
   var msg = "You're not using Windows Internet Explorer.";
   var ver = getInternetExplorerVersion();
   if ( ver> -1 )
   {
      if ( ver< 8.0 && browserNoSes.toLowerCase() == "false" ){window.location.href="updateIE.asp"}
    }
   
}
