function newWindow(picname, height) {
newWin= open("", "displayWindow", "width=650, height=" + height + ", status=no, scrollbars=yes, toolbar=no, menubar=no");
newWin.document.open();
newWin.document.write("<html><title>Feature Image</title><body bgcolor='#d4d0c8' leftmargin='0' topmargin='0' rightmargin='0' bottommargin='0' marginwidth='0' marginheight='0'><table border='0' align='center' valign='center' width='100%' height='100%'><tr><td align='center' valign='center'><a href='#' onClick=window.close()><img src=\""+picname+"\" alt='Close the window' border='0'></a></td></tr></table></body></html>");
newWin.document.close();
newWin.focus();
return false;
}
