var newWindow;
function openAlbum(url, w, h) {
if( newWindow && !newWindow.closed ) {
newWindow.close();
}
newWindow = window.open(url, 'newWin', 'width='+ w +', height=' + h +', scrollbars=no, resizable=no, toolbars=no, location=no, directories=no, status=no, menubar=no, copyhistory=no');
newWindow.document.write("<html><head><title>Album Artwork</title><style type='text/css'>body{margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;background:url(images/dpbg.gif);}</style></head><body><center><table width='100%' height='100%' border='0'><tr valign='middle'><td align='center'><a href='javascript:window.close();'><img style='border:1px;border-color:#000000;border-style:solid;' src=" + url + " alt='Click to close.' border='0'></a></td></tr></table></body></html>");
newWindow.document.close();
newWindow.focus();
}

var newWindow;
function openPhoto(url, w, h, caption) {
if( newWindow && !newWindow.closed ) {
newWindow.close();
}
newWindow = window.open(url, 'newWin', 'width='+ w +', height=' + h +', scrollbars=no, resizable=yes, toolbars=no, location=no, directories=no, status=no, menubar=no, copyhistory=no');
newWindow.document.write("<html><head><title>(Die) Pilot - Image Gallery</title><style type='text/css'>body{margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;background:url(images/dpbg.gif);}</style></head><body><center><table width='100%' border='0'><tr valign='top'><td align='center'><a href='javascript:window.close();'><img style='border:1px;border-color:#000000;border-style:solid;' src=" + url + " alt='Click to close.' border='0'></a></td></tr><tr valign='top'><td align='center'><p style='font-family:helvetica,sans-serif;color:#000000;font-size:10px;font-weight:bold;'>" + caption + "</p></td></tr></table></body></html>");
newWindow.document.close();
newWindow.focus();
}
