closetime = 12; // Close window after __ number of seconds?
// 0 = do not close, anything else = number of seconds

function Start(URL, WIDTH, HEIGHT) {
windowprops = "left=100,top=100,width=" + WIDTH + ",height=" + HEIGHT;
preview = window.open(URL, "preview", windowprops);
if (closetime) setTimeout("preview.close();", closetime*1000);
}

function doPopup1() {
url = "http://www.cameraaction.com.au/popups/pages/maintKit.asp"; // FREE maintainence kit
width = 270;  // width of window in pixels
height = 268; // height of window in pixels
delay = 0;    // time in seconds before popup opens
timer = setTimeout("Start(url, width, height)", delay*1000);
}

function doPopup2() {
url = "http://www.cameraaction.com.au/popups/pages/travelKit.htm"; // travel accessory kit
width = 170;  // width of window in pixels
height = 390; // height of window in pixels
delay = 2;    // time in seconds before popup opens
timer = setTimeout("Start(url, width, height)", delay*1000);
}

function doPopup3() {
url = "http://www.cameraaction.com.au/popups/pages/150310.htm"; // Sony value kit
width = 250;  // width of window in pixels
height = 350; // height of window in pixels
delay = 2;    // time in seconds before popup opens
timer = setTimeout("Start(url, width, height)", delay*1000);
}

function doPopup4() {
url = "http://www.cameraaction.com.au/popups/pages/150275.htm"; // Pansonic Crumpler Kit
width = 220;  // width of window in pixels
height = 300; // height of window in pixels
delay = 2;    // time in seconds before popup opens
timer = setTimeout("Start(url, width, height)", delay*1000);
}

function doPopup5() {
url = "http://www.cameraaction.com.au/popups/pages/150247.htm"; // JVC kit
width = 250;  // width of window in pixels
height = 350; // height of window in pixels
delay = 2;    // time in seconds before popup opens
timer = setTimeout("Start(url, width, height)", delay*1000);
}

function doPopup6() {
url = "http://www.cameraaction.com.au/popups/pages/148567.htm"; // Canon case
width = 230;  // width of window in pixels
height = 230; // height of window in pixels
delay = 2;    // time in seconds before popup opens
timer = setTimeout("Start(url, width, height)", delay*1000);
}

function doPopup7() {
url = "http://www.cameraaction.com.au/popups/pages/141007.htm"; // Sony kit ACC-FM-30
width = 260;  // width of window in pixels
height = 370; // height of window in pixels
delay = 3;    // time in seconds before popup opens
timer = setTimeout("Start(url, width, height)", delay*1000);
}

function doPopup8() {
url = "http://www.cameraaction.com.au/popups/pages/can100.htm"; // Canon Bonus $100
width = 250;  // width of window in pixels
height = 390; // height of window in pixels
delay = 3;    // time in seconds before popup opens
timer = setTimeout("Start(url, width, height)", delay*1000);
}

function doPopup9() {
url = "http://www.cameraaction.com.au/popups/pages/can150.htm"; // Canon Bonus $150
width = 250;  // width of window in pixels
height = 390; // height of window in pixels
delay = 3;    // time in seconds before popup opens
timer = setTimeout("Start(url, width, height)", delay*1000);
}

function doPopup400() {
url = "http://www.cameraaction.com.au/flash/GS400.html"; // flyingMamba
width = 560;  // width of window in pixels
height = 400; // height of window in pixels
delay = 3;    // time in seconds before popup opens
timer = setTimeout("Start(url, width, height)", delay*1000);
}

function doPopup11() {
url = "http://www.cameraaction.com.au/popups/pages/phones.asp"; // prepaid phones info
width = 280;  // width of window in pixels
height = 500; // height of window in pixels
delay = 3;    // time in seconds before popup opens
timer = setTimeout("Start(url, width, height)", delay*1000);
}