defaultStatus = "Solo TU Centro Estetico, Ciampino(RM)"

function mailto(indirizzo) {
	re = /\*/gi; 	//espressione regolare che trasforma * in @
	indirizzo=indirizzo.replace(re, "@");
    	self.document.location.href = 'mailto:' + indirizzo
}

function openWin( windowURL, windowName, windowFeatures ) { 
  return window.open( windowURL, windowName, windowFeatures ) ; 
} 

function Apri(url) {
newWindow = openWin( url, null, 'width=450,height=300,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=1,left=270,top=30' ); newWindow.focus()
}

function ApriWH(url, w, h) {
newWindow = openWin( url, null, "width=" + w + ",height=" + h + ",toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=1,left=270,top=30" ); newWindow.focus()
}

function ApriImmagini(file)
{
  var prop = "top=100, left=100";
  window.open(file, null, prop);
}

/* Permette l'apertura di link esterni anche con XHTML Strict, usando JS */
function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "esterno")
     anchor.target = "_blank";
 }
}
window.onload = externalLinks;