function showPic (whichpic) {
        if (document.getElementById) {
                document.getElementById('placeholder').src = whichpic.href;
                if (whichpic.title) {
                        document.getElementById('desc').childNodes[0].nodeValue = whichpic.title;
                } else {
                        document.getElementById('desc').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue;
                }
                return false;
        } else {
                return true;
        }
}

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=1,statusbar=0,menubar=0,resizable=1,width=780,height=400,left = 15,top = 80');");
}








