function site(stronka, x,y) {
rest = "toolbar=no,menubar=no,resizable=yes,scrollbars=1,width="+x+",height="+y+",left=10,top=10"
myWindow = window.open(stronka,"_blank",rest);
focus.myWindow;
}
function edge(stronka, x,y) {
rest = "toolbar=no,menubar=no,resizable=yes,width="+x+",height="+y+",left=10,top=10"
myWindow = window.open(stronka,"_self",rest);
focus.myWindow;
}
function image(img, x,y) {
rest = "toolbar=no,menubar=no,resizable=yes,width="+x+",height="+y+",left=10,top=10"
myWindow = window.open("", "blank", rest)
myWindow.document.write("<div align=\"center\"><img src=\""+img+"\" border=\"0\"></div>")
myWindow.document.bgColor="Black"
myWindow.document.close()
focus.MyWindow;
}

function OpenSite(site) {
myWindow = window.open(site,"_blank");
focus.myWindow;
}
