function win(image)
{
newdoc=window.open('','','toolbar=no,location=no,status=no,menubar=no,resizable=yes, directories=no, scrollbars=yes,width=800, height=600, top=5, left=5');
newdoc.document.open();
newdoc.document.write('<html><head><title>Интор</title></head><body style="margin-left:0; margin-top:0;"><img src="'+image+'"></body></html>');
newdoc.document.close();
}