function newWindow(picname) {
newWin= open("", "displayWindow", "width=500, height=333, status=no, toolbar=no, menubar=no");
newWin.document.open();
newWin.document.write("<html><title>Australia Day</title><body bgcolor='#000000' leftmargin='0' topmargin='0' rightmargin='0' bottommargin='0' marginwidth='0' marginheight='0'><a href='#' onClick=window.close()><img src=\""+picname+"\" width='500' height='333' alt='Click here to close the window' border='0'></a></body></html>");
newWin.document.close();
newWin.focus();
return false;
}