// JavaScript Document
var newwindow = ''
var wheight = 0
var wwidth = 0
function popup(url) {
var title = '.: Cheesecake Royale Bakery: Gallery :.'
var iwidth = 353
var iheight = 466
if (wheight!=iheight || wwidth!=iwidth){tidy()};
if (newwindow.location && !newwindow.closed && wwidth==iwidth && wheight==iheight) 
{ newwindow.focus(); newwindow.document.clear() } 
else 
{ 
pwidth=iwidth+2;
pheight=iheight+2;
newwindow=window.open('','','width=' + pwidth + ',height=' + pheight + ',resizable=0,menubar=1');
wheight=iheight;
wwidth=iwidth;
}
newwindow.document.writeln('<html> <head> <title>' + title + '<\/title> <\/head> <body LEFTMARGIN=0 TOPMARGIN=3 MARGINWIDTH=0 MARGINHEIGHT=0 bgcolor=\"#333333\"> <center>');
newwindow.document.writeln('<img src=' + url + '>');
newwindow.document.writeln('<\/center> <\/body> <\/html>');
newwindow.document.close();
}

function tidy() {
if (newwindow.location && !newwindow.closed) { 
   newwindow.close(); } 
}

function popUp2(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=580,height=750,left = 222,top = 9');");
}