
function MM_findObj(n, d) { //v3.0
  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); 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_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;
}

<!-- New Window Opener -->

	function newWindow(bookgif) {
		bookWindow = window.open(bookgif, "bookWin", "width=730,height=476,toolbar=yes,location=no,status=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,left=10,top=10")
		bookWindow.focus()
	}
	
	function newWindow3(bookgif3) {
		bookWindow3 = window.open(bookgif3, "bookWin3", "width=544,height=456,toolbar=no,location=no,status=no,directories=no,menubar=no,scrollbars=yes,resizable=no,left=100,top=30")
		bookWindow3.focus()
	}
	
function openPictureWindow_Fever(imageName,imageWidth,imageHeight,alt,posLeft,posTop) {
	newWind = window.open("","newWind","width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop);
	newWind.document.open();
	newWind.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWind.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt='+alt+'>'); 
	newWind.document.write('</body></html>');
	newWind.document.close();
	newWind.focus();
}


  if (document.images) {
  index_r4_c3_f2 = new Image(81 ,17); index_r4_c3_f2.src = "images/index_r4_c3_f2.gif";
  index_r4_c3_f1 = new Image(81 ,17); index_r4_c3_f1.src = "images/index_r4_c3.gif";
  index_r4_c4_f2 = new Image(77 ,17); index_r4_c4_f2.src = "images/index_r4_c4_f2.gif";
  index_r4_c4_f1 = new Image(77 ,17); index_r4_c4_f1.src = "images/index_r4_c4.gif";
  index_r4_c5_f2 = new Image(78 ,17); index_r4_c5_f2.src = "images/index_r4_c5_f2.gif";
  index_r4_c5_f1 = new Image(78 ,17); index_r4_c5_f1.src = "images/index_r4_c5.gif";
  index_r4_c6_f2 = new Image(88 ,17); index_r4_c6_f2.src = "images/index_r4_c6_f2.gif";
  index_r4_c6_f1 = new Image(88 ,17); index_r4_c6_f1.src = "images/index_r4_c6.gif";
  index_r4_c7_f2 = new Image(80 ,17); index_r4_c7_f2.src = "images/index_r4_c7_f2.gif";
  index_r4_c7_f1 = new Image(80 ,17); index_r4_c7_f1.src = "images/index_r4_c7.gif";
  }
  
  <!-- Fix Netscape Navigator Resize Bug -->

function WM_netscapeCssFix(){if(document.WM.WM_netscapeCssFix.initWindowWidth !=window.innerWidth||document.WM.WM_netscapeCssFix.initWindowHeight !=window.innerHeight){document.location=document.location;}
}
function WM_netscapeCssFixCheckIn(){if((navigator.appName=='Netscape') &&(parseInt(navigator.appVersion)==4)){if(typeof document.WM=='undefined'){document.WM=new Object;}
if(typeof document.WM.WM_scaleFont=='undefined'){document.WM.WM_netscapeCssFix=new Object;document.WM.WM_netscapeCssFix.initWindowWidth=window.innerWidth;document.WM.WM_netscapeCssFix.initWindowHeight=window.innerHeight;}
window.onresize=WM_netscapeCssFix;}
}
WM_netscapeCssFixCheckIn()

<!-- Pop Up Window - Images -->

function CaricaFoto(img){
  foto1= new Image();
  foto1.src=(img);
  Controlla(img);
}
function Controlla(img){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img);
  }
  else{
    funzione="Controlla('"+img+"')";
    intervallo=setTimeout(funzione,20);
  }
}
function viewFoto(img){
  largh=foto1.width+20;
  altez=foto1.height+20;
  stringa="width="+largh+",top=20,left=30,height="+altez;
  finestra=window.open(img,"",stringa);
}

<!-- Form Validation - Email Addresses -->

		function validEmail(email) {
			invalidChars = " /:,;"
	
			if (email == "") {
				return false
			}
			for (i=0; i<invalidChars.length; i++) {
				badChar = invalidChars.charAt(i)
				if (email.indexOf(badChar,0) > -1) {
					return false
				}
			}
			atPos = email.indexOf("@",1)
			if (atPos == -1) {
				return false
			}
			if (email.indexOf("@",atPos+1) > -1) {
				return false
			}
			periodPos = email.indexOf(".",atPos)
			if (periodPos == -1) {
				return false
			}
			if (periodPos+3 > email.length)	{
				return false
			}
			return true
		}

		function submitIt(carForm) {
			if (!validEmail(carForm.emailAddr.value)) {
				alert("Please enter your EMAIL ADDRESS so we can get back to you.")
				carForm.emailAddr.focus()
				carForm.emailAddr.select()
				return false
			}
	
			return true
		}
		
function openWindow (url,name,widgets) 
{
	popupWin = window.open (url,name,widgets);
	popupWin.opener.top.name="opener";
	popupWin.focus();
}
		
<!-- Right Click Disabler -->
	
// am = "Live the Dream! Ski Las Leņas.";

// bV  = parseInt(navigator.appVersion)
// bNS = navigator.appName=="Netscape"
// bIE = navigator.appName=="Microsoft Internet Explorer"

// function nrc(e) {
//  if (bNS && e.which > 1){
//      alert(am)
//     return false
//   } else if (bIE && (event.button >1)) {
//     alert(am)
//     return false;
//   }
// }

// document.onmousedown = nrc;
// if (document.layers) window.captureEvents(Event.MOUSEDOWN);
// if (bNS && bV<5) window.onmousedown = nrc;


