// View Picture In Separate Window Script
// 1998-2000 Copyrigth by ArtCrime

function viewer(picName,wn,alt) {

var v=parseInt(navigator.appVersion);
isNetscape=navigator.appName.indexOf('Netscape')>=0;
isExplorer=navigator.appName.indexOf('Explorer')>=0;
  positionCode='';

         sw  = screen.availWidth - 10;
         sh  = screen.availHeight;

 if(isExplorer) {
        positionCode=',left=0,top=0';

    }
 if(isNetscape) {
        positionCode=',screenX=0,screenY=0';
    }

newWindow=window.open("",wn,'width='+sw+',height='+sh+positionCode);
// newWindow=window.open('name','Full_size_picture','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizeable=no,fullscreen=yes');

newWindow.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1251"></head>');
newWindow.document.write('<body bgcolor=white link=gray vlink=gray alink=silver>');
newWindow.document.write('<table border="0" width="100%" height="90%"><tr><td width="100%" valign="middle" align="center" height="90%"><img src="'+picName+'" alt="'+alt+'">');
newWindow.document.write('<font color=black face="arial"><p>'+alt+'</p></font></td>');
newWindow.document.write('</tr></table>');
newWindow.document.write('<b><p align="center"><font color=gray face="arial" size=-1><a href="javascript:window.close();">close window</a></p></font></b></body></html>');


}

