
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>Casa Jacaranda B&B</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()

}


