//UPGRADE GU
alert('ok') 

var now = new Date();
var second = now.getSeconds();
var popupCount = 0;

todays_date =  '' + now.getDate() + (now.getMonth() + 1) + now.getYear();

//Latest Version (revise)
latest_ver = 270;
popup_max_ver_popup = 263;


//Popup Notifications by Language
switch(language) {
	case "french": 
		alertMsg= "Voici la nouvelle version de Kaaza en Français. Nous vous recommandons de la mettre à jour. \n  \n Cliquer OK pour mettre à jour.";
		popup_max_ver_popup = 265;
	break;
	case "korean": 
		alertMsg= "IMPORTANT: The latest version of Kazaa includes enhanced built-in virus protection to help keep your computer safe. \\n\\nYou are using an older version of Kazaa and will no longer be protected by the latest available anti-virus definitions after October 25, 2004. \\n\\nWe strongly recommend that you upgrade to the latest version of Kazaa now. \\n\\nClick OK to upgrade.";
				popup_max_ver_popup = 265;
	break;
	case "german": 
		alertMsg= "Es ist eine neue Version von Kazaa in Deutsch verfügbar. Sie sollten auf jeden Fall ein Upgrade durchführen. \n  \n Klicken Sie auf OK, um das Upgrade durchzuführen.";
				popup_max_ver_popup = 265;
	break;
	case "spanish": 
		alertMsg= "Hay una versión nueva de Kazaa disponible en español. Le recomendamos que actualice la versión. \n  \n Haga clic en OK para actualizar la versión.";
				popup_max_ver_popup = 265;
	break;
	case "portugese": 
		alertMsg= "Existe uma nova versão do Kazaa disponível em Português. \n  \n Clica em OK para obteres o Kazaa v"+kazaaLanguageVersion+" em Português.";
				popup_max_ver_popup = 265;
	break;
	case "italian": 
		alertMsg= "C\'e\' una nuova versione di Kazaa disponibile in italiano. \n  \n Cliccare OK per scaricare Kazaa v."+kazaaLanguageVersion+" in italiano.";
				popup_max_ver_popup = 265;
	break;
	
	default: 
		alertMsg= "IMPORTANT: The latest version of Kazaa includes enhanced built-in virus protection to help keep your computer safe. \\n\\nYou are using an older version of Kazaa and will no longer be protected by the latest available anti-virus definitions after October 25, 2004. \\n\\nWe strongly recommend that you upgrade to the latest version of Kazaa now. \\n\\nClick OK to upgrade.";
				popup_max_ver_popup = 265;
	break;
	
}

	if (getCookie('upgradePopupCount') < 5 || !parseInt( getCookie('upgradePopupCount') ) ) {
		if (ver <= popup_max_ver_popup) {
			days = 1000;
			now.setTime(now.getTime()+(days*24*60*60*1000));
	
			//Used to be once a day now it's five times
			//document.cookie = "downloadAlertDate=" + todays_date + "; path=/; expires=" + now.toGMTString();
			
			if( !parseInt( getCookie('upgradePopupCount') ) ){
				popupCount = 1;
			}else{
				popupCount = parseInt( getCookie('upgradePopupCount') ) + 1;
			}
	
			document.cookie = "upgradePopupCount=" + popupCount + "; path=/; expires=" + now.toGMTString();
			document.write("<iframe id=counteriframe height=0 width=0 scrolling=no frameborder=0 src=http://dyn.kazaa.com/dcounter.php?ver=" + ver + "&country=" + country + "></iframe>");
		}
	}
