function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);


//function MM_openBrWindow(theURL,winName,features) { //v2.0
//  window.open(theURL,winName,features);
//}


function doscrolls(){
if (document.all && document.getElementById){
		document.body.style.scrollbarBaseColor="#9A6261";
		document.body.style.scrollbarFaceColor="#FFFFFF";
		document.body.style.scrollbarArrowColor="#9A6261";
		document.body.style.scrollbarHighlightColor="#FFFFFF";
		document.body.style.scrollbarTrackColor="#DCDCDC";
		document.body.style.scrollbarShadowColor="#FFFFFF";
	}
}

function checkCaptcha(lang){

    var captcha = document.form.captcha.value;
		
		if(captcha == "13a7be"){
		    document.form.submit();
		}
		else{
		    if(lang == "it"){
				    var str = "Il codice inserito non é corretto.\nPer favore controllare e riprovare."; 
				}
				else if(lang == "de"){
				    var str = "Der eingegebene Code ist nicht korrekt.\nBitte überprüfen und nochmals eingeben."; 
				}
				else if(lang == "fr"){
				    var str = "Le code n'est pas correcte.\nController et essayer à nouveau, s'il vous plaît."; 
				}
				
		    alert(str);
		}
		 
}