// JavaScript Document
if (top != self){ 
	if (!(top.location.href.indexOf("admin")>0)){
	top.location.href = location.href;
	}
}


function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function MM_validateForm() { //v4.0
  	var i,p,q,nm,test,num,min,max,firstErrField,errors='',tmpErrors='',args=MM_validateForm.arguments;
	firstErrField = null;
  	for (i=0; i<(args.length-2); i+=3){
		tmpErrors = errors;
  		test=args[i+2];
		val=MM_findObj(args[i]);
		valObj = val;
    	if (val) {
			nm=val.title;
			if(!nm){nm=val.name}
			if ((val=val.value)!="" && args[i+1]!='radio') {
				if (test.indexOf('isEmail')!=-1) {
					p=val.indexOf('@');
			        if (p<1 || p==(val.length-1)){
						errors+='- Il campo "'+nm+'" deve contenere un indirizzo email valido.\n';
					}
				} else if (test!='R') {
					num = parseFloat(val);
			        if (isNaN(val)){
						errors+='- Il campo "'+nm+'" deve contenere un numero.\n';
					}
			        if (test.indexOf('inRange') != -1) {
						p=test.indexOf(':');
						min=test.substring(8,p);
						max=test.substring(p+1);
						if (num<min || max<num) errors+='- Il campo "'+nm+'" deve contenere un numero compreso tra '+min+' e '+max+'.\n';
				    }
				}
			} else if (test.charAt(0) == 'R'){
			 	if (args[i+1]=='radio'){
					if (emptyInput(valObj)){
						errors += '- Selezionare una opzione per il campo "'+valObj[0].title+'".\n'+emptyInput(valObj);
						valObj = valObj[0];
					}
				}else{
					errors += '- Il campo "'+nm+'" è obbligatorio.\n';
				}
			 }
		}
		if(tmpErrors != errors){
			valObj.className = 'error'
			if(firstErrField == null){
				firstErrField = valObj;
				firstErrField.focus();
			}
		}else{
			valObj.className = ''
		}
	} 
	if (errors) alert('Attenzione! Si sono verificati i seguenti errori:\n'+errors);
	document.MM_returnValue = (errors == '');
	return document.MM_returnValue;
}

var clockID = 0;

function UpdateClock() {
   if(clockID) {
      clearTimeout(clockID);
      clockID  = 0;
   }
   var tDate = new Date();
   MM_findObj('placeTimeStr').innerText = "" 
                                   + (tDate.getHours()>9 ? tDate.getHours():"0"+tDate.getHours()) + ":" 
                                   + (tDate.getMinutes()>9 ? tDate.getMinutes():"0"+tDate.getMinutes()) + ":" 
                                   + (tDate.getSeconds()>9 ? tDate.getSeconds():"0"+tDate.getSeconds());
   clockID = setTimeout("UpdateClock()", 1000);
}

function StartClock() {
   clockID = setTimeout("UpdateClock()", 500);
}

function KillClock() {
   if(clockID) {
      clearTimeout(clockID);
      clockID  = 0;
   }
}

function messageWindow(title, msg)

{

  var width="300", height="125";

  var left = (screen.width/2) - width/2;

  var top = (screen.height/2) - height/2;

  var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;

  var msgWindow = window.open("","msgWindow", styleStr);

  var head = '<head><title>'+title+'</title></head>';

  var body = '<center>'+msg+'<br><p><form><input type="button" value="   Done   " onClick="self.close()"></form>';

  msgWindow.document.write(head + body);

}

var popUpWin=0;

function popUpWindow(URLStr, left, top, width, height,scrollbars,resize)

{

  if(popUpWin)

  {

    if(!popUpWin.closed) popUpWin.close();

  }
	if(!scrollbars) scrollbars = 'no';
	if(!resize) scrollbars = 'no';
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=' + scrollbars + ',resizable='+ resize +',copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');

}

//corrisponde alla @replacesubstring
function ReplaceSubString(Stringa, StringaDaCercare, StringaDaSostituire) {
 temp = "" + Stringa;
 while (temp.indexOf(StringaDaCercare)>-1) {
  pos= temp.indexOf(StringaDaCercare);
  temp = "" + (temp.substring(0, pos) + StringaDaSostituire + temp.substring((pos + StringaDaCercare.length), temp.length));
 }
 return temp;
}
		function getCheckBoxes(chkbxs,txtfld){
			chkbxs = MM_findObj(chkbxs);
			strcomp = '';
			for(i=0;i<chkbxs.length;i++){
				if(chkbxs[i].checked) strcomp = strcomp + chkbxs[i].value +'|';
			}
			if(strcomp){
			strcomp = strcomp + '%$£$';
			strcomp = ReplaceSubString(strcomp, '|%$£$', '');
			}
			txtfld = MM_findObj(txtfld);
			txtfld.value = strcomp;
		}	
		
function addbookmark() {
	bookmarkurl= window.location.href;
	bookmarktitle=document.title;
	if (document.all) window.external.AddFavorite(bookmarkurl,bookmarktitle);
}

function setHome() {
	document.body.style.behavior='url(#default#homepage)';
	document.body.setHomePage("http://www.noiconsumatori.org");
}
function printPage(){
	window.print();
}


function Accetta(){
	var p = MM_findObj('Accettato');
	var e = MM_findObj('Normativa_sulla_privacy');
	if (p.checked) {
		e.value = "Accettato";
	}else{
		e.value = "";
	}
}

function toggleVis(id,focus){
	p = id + 'Content';
	a = MM_findObj(p);
	a.style.display = ( (a.style.display=='none') ? '' : 'none');
	b = MM_findObj(id + 'Caption');
	if (a.style.display =='none')
	{
		b.className = "off"
	}else{
		if(focus){location = '#' + id;}
		b.className = "on"
	}
}


function sendPageByMail(){
	window.location.href = "/sendPageByMail.asp";
}
