function picWindow(picUrl, title, wd, ht)
{
  var height=ht + 60; // space for title & close link
  var winheight= ht +85; // adding more space
  var winwidth = wd + 20;
  picWin = window.open("", 'pic','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,height='+height+',width='+wd); 
  picWin.focus();     		// open window on top of all other web pages
  picWin.moveTo(0,0); 
  picWin.resizeTo(winwidth,winheight);	
  picWin.document.write("<BODY STYLE=\"margin:0px;padding:0px;background-color:#003162\">");
  picWin.document.write("<CENTER><SPAN STYLE='color:#ffffff;font-family:arial;font-size:80%;font-weight: bold;'>"+title+"</SPAN><BR><IMG SRC="+picUrl+" ALT='"+title+"'><BR>");
  picWin.document.write("<A HREF='#' STYLE='color: #ffffff;font-family:arial;font-size: 80%' onClick=\"self.close()\">close this window</A></CENTER></BODY>");
  picWin.document.close();
  picWin.document.title=".:: ArchitectsWorkshop 2005 ::.";
}