var ns4=document.layers
var ie4=document.all
var ns6=document.getElementById&&!document.all

function openwin(wFen,hFen,coulFond,imgFond,titre,margeH,margeV) {
    if (document.layers) {
        nf = "<html><head><title> EŽ :   Hotel Cube  Ravenna     "
        nf += titre
        nf += "</title>"
        nf += "</head><body bgcolor=\"" 
        nf += coulFond + "\">"
        nf += "<table style=\"position:absolute;top:"
        nf += margeV
        nf+= "px;left:"
        nf += margeH
        nf += "px\"width=\"100%\" height=\"100%\" cellpadding=\"0\" cellspacing=\"0\">"
        nf += "<tr><td align=\"center\">"
        nf += "<img onmouseDown=\"top.close()\" id=\"myPict\" src=\""
        nf += imgFond
        nf += "\" border=\"0\">"
        nf += "</td></tr>"
        nf += "</table>"
        nf += "</body></html>"
    }
    if (ie4 || ns6) {
        nf = "<html><head><title> EŽ :   Hotel Cube  Ravenna     "
        nf += titre
        nf += "</title>"
        nf += "<style type='text/css'>#myPict{position:absolute;"
        nf += "top:" + margeV + "px;"
        nf += "left:" + margeH + "px}"
        nf += "body{margin:0px;"
        nf += "background-color:" + coulFond + "}</style>"
    } 

    if (ie4) {
        nf += "</head><body onMouseDown=\"top.close()\" onKeyDown=\"top.close()\">"
    } else if (ns6) {
        nf += "</head><body onMouseDown=\"top.location='desole.html'\" onKeyDown=\"top.location='desole.html'\">"
    } 

    if (ie4 || ns6) {
        nf += "<img id=\"myPict\" src=\""
        nf += imgFond
        nf += "\" border=\"0\">"
        nf += "</body></html>"
    }
    newWin = window.open("","_blank","resizable=0,height=" + hFen + ",width=" + wFen)
    newWin.document.write(nf);
    newWin.document.close();
}






