// 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+'" e\' 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);
	}else{
		alert('Il tuo browser non supporta questa funzione.\nAggiungi manualmente il sito ai preferiti')	
	}
}

function setHome() {
	if(document.all){
	document.body.style.behavior='url(#default#homepage)';
	document.body.setHomePage("http://www.ilmioconsulentefinanziario.it");}
	else{
		alert('Il tuo browser non supporta questa funzione.\nImposta manualmente la tua Home Page')	
	}
}
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";
}





/*
var ItemScroller = Class.create();
ItemScroller.prototype = {

 initialize: function(element) {
 var options = Object.extend( {
 speed: 1000,
 skipclass: null
 }, arguments[1] || {} );

 this.element = $(element);
 this.options = options;

 this.eventMouseOver = this.mouseOver.bindAsEventListener(this);
 this.eventMouseOut = this.mouseOut.bindAsEventListener(this);
 this.eventMouseMove = this.mouseMove.bindAsEventListener(this);

 Event.observe( this.element, "mousemove", this.eventMouseMove);
 },

 scroll: function( arr ) {
 this.collection = $A(arr);

 var byID = $H()
 for( var i=0; i<this.collection.length; i++) {
 if( this.collection[i].entryID != null ) {
 byID[this.collection[i].entryID] = this.collection[i];
 }
 // preload the images...
 if( this.collection[i].imageURL ) {
 new Image().src = this.collection[i].imageURL;
 }
 }

 images = new Array();
 var allimgs = this.element.getElementsByTagName("img");
 for( var i=0; i<allimgs.length; i++) {
 if( this.options.skipclass && Element.hasClassName( allimgs[i], this.options.skipclass ) ) {
 continue;
 }
 images.push( allimgs[i] );

 var xx = byID[allimgs[i].name];
 if( xx ) {
 allimgs[i].item = xx;
 byID[allimgs[i].name] = null; // remove it?
 }
 else {
 alert("can not find: "+allimgs[i].name );
 }

 // observe the mouseover/out...
 Event.observe(allimgs[i], "mouseover", this.eventMouseOver);
 Event.observe(allimgs[i], "mouseout", this.eventMouseOut);
 }

 var hidden = $A();
 var vvv = byID.values();
 for( var i=0; i<vvv.length; i++) {
 if( vvv[i] != null ) {
 hidden.push( vvv[i] );
 }
 }

 //alert( "IMAGES:"+images + "\nALL:" +byID.inspect()+"\nIN:"+arr+"\nCOL:"+this.collection+"\nHIDDEN:"+hidden );


 if( this.looper ) {
 clearInterfal( this.looper );
 }
 var loopID = 0;
 var scroller = this;

 var rand = null;
 var lastrand = null;

 this.looper = setInterval( function() {
 for( var i=0; i<5; i++ ) { // only try 5 times
 rand = images[ Math.floor( Math.random()*images.length ) ];
 if( rand && (rand != lastrand) && rand != scroller.overElement )
 {
 //alert( "RAND: "+rand + " : " + rand.name + " : " + rand.type );

 lastrand = rand;

 if( rand.item ) {
 var temp = rand.item;
 rand.item = hidden[loopID];
 rand.parentNode.href = rand.item.showURL;
 hidden[loopID] = temp;

 if( rand.item.imageURL ) {
 new Effect.Fade( rand, { to:0.05, afterFinish: function() {
 rand.src = rand.item.imageURL;
 new Effect.Appear( rand );
 } } );
 }
 loopID = (loopID+1)%hidden.length;
 }
 else {
 alert( "no item: "+rand + " : " + rand.name + " : " + rand.type );
 }
 return;
 }
 }
 }, this.options.speed );
 },


 mouseOver: function(event) {
 this.overElement = Event.element( event );
 if( this.overElement.item ) {
 if(!this.overlay ) {
 this.overlay = Builder.node( 'div', { style:"position:absolute; border:1px solid black; background:#FFFFFF; padding: 5px; visibility: hidden;" }, "hello!" );
 document.body.appendChild( this.overlay );
 }
 var item = this.overElement.item;
 this.overlay.innerHTML = '<b>'+item.name+'</b><br/>by '+item.author;

 this.mouseMove( event );
 this.overlay.style.visibility ='visible';
 }
 },

 mouseOut: function(event) {
 this.overElement = null;

 this.overlay.style.visibility ='hidden';
 },

 mouseMove: function(event) {
 if( this.overlay ) {
 this.overlay.style.top = (Event.pointerY(event)+10)+"px";
 this.overlay.style.left = (Event.pointerX(event)+10)+"px";
 }
 }
}



*/







