function turnLightOn(obj)
{
    obj.style.backgroundColor="#D99413";
}

function turnLightOff(obj)
{
    obj.style.backgroundColor="";
}

function showPic(picfile)
{
    win=window.open("","ka","width=500,height=200");
    win.moveTo(0,0);
    win.document.close();
    win.document.open();
    win.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">');
    win.document.write('<html xmlns="http://www.w3.org/1999/xhtml"><head>');
    win.document.write("<title>Kancelaria Adwokacja</title>");
    win.document.write("<style>h1 {margin-top: 90px; text-align: center; font-size: 18px; font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;} #imageMe {display: none; position: absolute; left: 0px; top: 0px;} body {background-image: url(img/bg.page.gif); color: #ffffff; background-color: #000000; margin: 0px; padding: 0px} img {margin: 0px; padding: 0px; border: 0px; display: inline}</style>");
    win.document.write("</head>");
    win.document.write("<body><h1>trwa ładowanie zdjęcia...<br />copyright &copy; 2004 Kancelaria Adwokacka</h1><div id='imageMe'><img src='"+picfile+"' alt='' onload='getElementById(\"imageMe\").style.display=\"block\"; window.self.resizeTo(this.width+30, this.height+70); this.style.marginLeft=\"10px\"; this.style.marginTop=\"11px\";' /></div>");
    win.document.write("</body></html>");
    win.focus();
}

function popupWindow(url)
{
    window.open(url);
}

function checkForm(form)
{
    if (form.kontakt.value.length<1)
        alert("Nie wypełnione pole 'Kontakt'");
    else
        this.submit();
}
