// JavaScript Document
//
// Function list and description
// function openInter(type)     Open layer on Mouseover with language menu
//
// my Msg används i funktion scrollMsg()
// function Mail(box)           Function to hide email adress for address sniffers
// function Posta(box, domain)  Similar as Mail() 
// function formHandler1(form1) Handle language list scroll menu (to be pensioned)
// function printSimple()       Print function (not used)
// function apriimmagine(foto,larghezza,altezza) Show photo in small window
// function showphoto(photo)	Show photo in small window
// function chkframe()          Check that the fram is the main frame (not used)

function printSimple() {
    if (window.print) 
	{
        window.print();
    }
    else 
	{
    alert('Click with the right button of the mouse...');
    }
}

function showphoto(foto,larghezza,altezza)  
{
	var MyWidth = (window.screen.width-580)/2 - 10;
	var MyHeight = (window.screen.height-406)/2 - 40;
	w1=window.open("", "crs1", "width=" + larghezza + ",height=" + altezza + ",left=" + MyWidth + ",top=" + MyHeight + ",scrollbars=no,status=no,resizable=no");
    w1.document.writeln("<html><head><title>-- HOTEL VILLA ENRICA --</title></head>");
    w1.document.writeln("<body bgcolor='#FFFFFF' text='#000000' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
    w1.document.writeln("<a href='' onclick='window.close()'><img src='http://www.aeoliancharme.com/villaenrica/images/gallery/"+ foto + ".jpg' border='0' alt='Click to close the Window...'></a>");
    w1.document.writeln("</body></html>");
    w1.document.close();
    w1.focus();
}