function itemwin(url) {
	tx1 = '<html><head><style type="text/css"><!-- body{background-color:#000;text-align:center;}input{margin-top: 10px;} --></style><title>new item image</title></head><body>';
    tx2 = '<br><input type="button" value="close" onclick="window.close();"></body></html>';
	nwin = window.open('','pop','width=600px,height=520px,scrollbars=1');
    nwin.document.write(tx1+'<img src="'+url+'">'+tx2);
    nwin.document.close();
    nwin.focus();
}