﻿function zoom(filename) {
    window1 = window.open("/zoom.php?path="+filename,"window1","width=1,height=1,left=10,top=10,resizable=yes,scrollbars=yes");
    window1.focus();
}

function showpicture(pid,galleryid,nocount) {
    if (!nocount) count=1; else count=0;
    pid=pid-1;
    uri = "showpicture.php?pID="+pid+"&gID="+galleryid+"&count="+count;
    window1 = window.open(uri,"window1","width=900,height=700,left=70,top=70,resizable=yes,scrollbars=yes");
    window1.focus();
}

function openratinghelp(ratingid) {
    uri = "showratinghelp.php?ID="+ratingid;
    window1 = window.open(uri,"window1","width=400,height=400,left=70,top=70,resizable=yes,scrollbars=no");
    window1.focus();
}

function recommend(type,p1,p2) {
    window1 = window.open("recommend.php?type="+type+"&p1="+p1+"&p2="+p2,"window1","width=500,height=580,left=90,top=90,resizable=yes,scrollbars=no");
    window1.focus();
}

function print(type,p1,p2) {
    window1 = window.open("showarticleprint.php?ID="+p1,"window1");//,"width=500,height=400,left=90,top=90,resizable=yes,scrollbars=no");
    window1.focus();
}

function opennew(urlstring) {
    wname = String(Math.round(Math.random()*1000));
    window1 = window.open(urlstring,wname,"width=580,height=460,left=10,top=40,resizable=yes,scrollbars=yes");
    window1.focus();
}