
function showpic(pic,desc,w,h) 
{
 ht=h+30;
wt=w+20;
 PicWin = window.open( "", "Pic","width="+wt+",height="+ht+",toolbar=no,location=no,menubar=no,resizable=no,scrollbars=yes");   
  PicWin.document.write('<html><head><title>'+ desc + '</title>');
  PicWin.document.write('</head>');	
  PicWin.document.write('<BODY onResize="resize()" onLoad="window.focus()" BGCOLOR=#FFEBD7 topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">');
  PicWin.document.write('<center>');
  PicWin.document.write('<form>');
  PicWin.document.write('<img src="/recipes/img/'+ pic + '" ' + 'border="0">');
  PicWin.document.write('<br><input type="button" value="Close" onClick="window.close()">');
  PicWin.document.write('<input type="button" value="Print" onClick="window.print()"></form>');
  PicWin.document.write('</body></html>');	
  PicWin.document.close();	
	
 if (navigator.appName.substring(0,8) == "Netscape") 
   PicWin.focus();

}

// -->