
function apri_fin(nomefile,nomefin,largh,altez) {

   largh = largh + 20 
   altez = altez + 20

   config='toolbar=no,location=no,directories=no,status=no,menubar=no,width=' + largh  + ',height=' + altez 
   config += ',scrollbars=no,resizable=no'

   pop = window.open (nomefile,nomefin,config)
   pop.moveTo((screen.Width/2) - (largh/2), (screen.Height/2)- (altez/2));
   pop.focus()

}


function apri_foto(nomefoto,largh,altez) {

   config='toolbar=no,location=no,directories=no,status=no,menubar=no,width=' + largh + ',height=' + altez
   config += 'scrollbars=no,resizable=no'
   pop = window.open ("","FOTO", config)
   pop.document.open()

   testohtml='<HTML><HEAD><TITLE>www.mdssoluzionidigitali.net</TITLE>'
   testohtml += '<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><LINK rel="stylesheet" href="mds.css" type="text/css"></HEAD>'
   testohtml += '<BODY topmargin=0 leftmargin=0 oncontextmenu="return false" bgcolor=#000000>'  
   testohtml += '<TABLE BORDER=0 width=100% height=100%><TR><TD valign=center align=center WIDTH=' + largh + ' height=' + altez + ' ><IMG SRC=' + nomefoto + ' id=bordo></td></tr></table></body></html>'

   pop.document.write (testohtml)
   pop.document.close()

   pop.moveTo((screen.Width/2) - (largh/2), (screen.Height/2)- (altez/2));
   pop.focus()

}

var head="display:''"
	function mostranascondi(header){
		var head=header.style
			if (head.display=="none")
				head.display=""
			else
			head.display="none"
}


function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		home_over = newImage("immagini/home-over.gif");
		servizi_over = newImage("immagini/servizi-over.gif");
		portfolio_over = newImage("immagini/portfolio-over.gif");
		contattaci_over = newImage("immagini/contattaci-over.gif");
		preloadFlag = true;
	}
}
