function openpic(img,title,width,height)
{
//picwin = window.open('','','width='+width+',height='+height+'')
picwin = window.open('','','left=0,top=0,width='+800+',height='+650+',resizable=yes,scrollbars=yes')
picwin.document.write(
'<html>',
'<head>',
'<title>'+title+'</title>',
'</head>',
'<body bgcolor="#DB7093">',
'<div align="center">',
'<img src="'+img+'"  >',
'</div>',
'</body>',
'</html>' //no comma after last line
);
}
