function openPage(imagename, cutcredit, title, attributes)
{
    var newPage=window.open('', 'Image', attributes); 
    newPage.document.write("<TITLE>" + title + "</TITLE><BODY BGCOLOR='#ffffff'>");
    newPage.document.write("<IMG SRC='" + imagename + "'><BR CLEAR='all'>");
    newPage.document.write("<SPAN STYLE='color:#999999; font-family: Arial, Verdana, Geneva, Helvetica; font-size: 11px; font-weight: normal;text-transform: uppercase;'>"+cutcredit+"</SPAN></BODY>");
}

function popPOTD(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=848,height=670,left = 206.5,top = 164.5');");
}