function popUp(URL)
{
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=600,height=500');");
}

function popUpPhoto(URL, w, h)
{

w=w+16;
h=h+4;

if (h>500)
{
  h=500;
}

if (w>700)
{
  w=700;
}

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=" + w + ",height=" + h + "');");
}

function popUpVideo(URL)
{
window.open(URL, 'video', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=0,width=400,height=400');
}

function popUpAtStart(URL)
{
window.open(URL, 'video', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=0,width=400,height=385');

//bring parent window to forefront
parent.focus();
}