<!--

function cw(file) {

 var my_width  = 750;
 var my_height = 600;

 var popwin;

 var left = (screen.Width-my_width)/2;
 var top  = (screen.Height-my_height)/2;


 var html = '';

 html +='<html>';
 html +='<head>';
 html +='<title>Vintage</title>';
 html +='<style type="text/css">';
 html +='body {color: #fff; font-size:14px; padding:0; margin:0; background-color:#161616; scrollbar-arrow-color:gray; scrollbar-3dlight-color:gray; scrollbar-highlight-color:gray; scrollbar-face-color:#333333; font-family: Arial, Arial Cyr, Tahoma, MS Sans Serif;}';
 html +='a:link, a:visited, a:hover { color:#fff; text-decoration:none; }';
 html +='</style>';
 html +='</head>';
 html +='</html>';
 html +='<body><center>';
 html +='<img src="'+file+'" border="0" alt=""><br>';
 html +='<a href="#" onClick="window.close()">close</a>';
 html +='</center></body>';
 html +='</html>';


 if ( popwin=window.open("empty.html", "_blank", 'width='+my_width+',height='+my_height+',scrollbars=0,status=1,left='+left+',top='+top+'') )
 {
     popwin.document.open();
     popwin.document.write(html);
     popwin.document.close();
     popwin.focus();
 }

}

//-->
