function kam() {
     obr="http://kamerka.bsn.pl/webcam/bigimg.php";
     w=704;
     h=576;
    str="";
    xpos=screen.width/2-w/2;
    ypos=screen.height/2-h/2;
    okno=window.open("","","toolbar=0,scrollbars=no,width="+w+",height="+h+",left="+xpos+",top="+ypos);
        str+="<head><title>Widok z kamery</title></head><body marginheight='0' marginwidth='0' leftmargin='0' topmargin='0'><img src='"+obr+"'></body>";
    okno.document.write(str);
    okno.document.close();
}