
function openpic(pic, window_width, window_height)
{
var window_left = (screen.availWidth / 2) - (window_width / 2);
var window_top = (screen.availHeight / 2) - (window_height /2);
var window_dimensions = "height=" + window_height + ",width=" + window_width + ",left=" + window_left + ",top=" + window_top;
window.open("/pic.php?pic="+pic, "photo", window_dimensions + ", scrollbars=0");
}


function openpicgallery(id, window_width, window_height)
{
var window_left = (screen.availWidth / 2) - (window_width / 2);
var window_top = (screen.availHeight / 2) - (window_height /2);
var window_dimensions = "height=" + window_height + ",width=" + window_width + ",left=" + window_left + ",top=" + window_top;
window.open("/pic_gallery.php?id="+id, "photo", window_dimensions + ", scrollbars=1");
}


function openpicanketa(id, girl, photoid, window_width, window_height)
{
var window_left = (screen.availWidth / 2) - (window_width / 2);
var window_top = (screen.availHeight / 2) - (window_height /2);
var window_dimensions = "height=" + window_height + ",width=" + window_width + ",left=" + window_left + ",top=" + window_top;
window.open("/pic_anketa.php?id="+id+"&girl="+girl+"&photoid="+photoid, "photo", window_dimensions + ", scrollbars=1");
}

