var v=parseInt(navigator.appVersion);

isNetscape=navigator.appName.indexOf('Netscape')>=0;

isExplorer=navigator.appName.indexOf('Explorer')>=0;

if(v>=3) self.focus();



function popupWindow(goLocation, x, y) {

ww=600+60;  wh=370+60;

/* ww=x+60;  wh=y+60;*/

positionCode='';

if(v>=4) {

sw  = screen.width;

sh  = screen.height;

wbx = Math.round((sw-ww)/2); 

wby = Math.round((sh-wh)/2);

if(isExplorer) positionCode='left='+wbx+',top='+wby+',';

if(isNetscape) positionCode='screenX='+wbx+',screenY='+wby+',';

}

newWindow=window.open('','foto','width='+ww+',height='+wh+','+positionCode+'toolbar=0,scrollbars=0,resizable=0');

docUpdate(goLocation);

newWindow.focus();

}



function docUpdate(imgLocation){

newWindow.document.open();

newWindow.document.write("<HTML><HEAD></HEAD><BODY BGCOLOR='#6D7381' TEXT='#E9E9E9' LINK='#333333' VLINK='#666666' ALINK='#000000' LEFTMARGIN='0' TOPMARGIN='0' RIGHTMARGIN='0' BOTTOMMARGIN='0' MARGINWIDTH='0' MARGINHEIGHT='0'><TABLE BORDER='0' CELLSPACING='0' CELLPADDING='0' width='100%' height='100%'><TR><TD ALIGN='CENTER'><A HREF='javascript:self.close();' TITLE='close'><IMG SRC="+imgLocation+" BORDER='1'></A></TD></TR></TABLE></BODY></HTML>");

newWindow.document.close();

newWindow.focus();

}

