closetime = 0;

function Start(URL, WIDTH, HEIGHT) {
windowprops = "status=no, scrollbars=yes, left=50,top=50,width=" + WIDTH + ",height=" + HEIGHT;
preview = window.open(URL, "preview", windowprops);
if (closetime) setTimeout("preview.close();", closetime*1000);
}

function doPopup(ID) {
url = "http://www.argentino-dogo.ru/news"+ID+".html";
width = 780;
height = 700;
delay = 0;    // time in seconds before popup opens
timer = setTimeout("Start(url, width, height)", delay*1000);
}

function doNewsPopup(NAME, WIDTH, HEIGHT) {
URL = "http://www.argentino-dogo.ru/news_pictures/"+NAME;
windowprops = "status=no, scrollbars=no, left=50,top=50,width=" + WIDTH + ",height=" + HEIGHT;
preview = window.open(URL, "Foto", windowprops);
}

function doKennelPopup() {
url = "http://www.argentino-dogo.ru/kennel.html";
width = 680;
height = 525;
delay = 0;    // time in seconds before popup opens
timer = setTimeout("Start(url, width, height)", delay*1000);
}
