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) {
ww=450+60;  wh=320+60;
/* ww=x+60;  wh=y+60;*/
positionCode='';
if(v>=4) {
sw  = screen.width;
sh  = screen.height;
wbx = Math.round((sw-ww)/5); 
wby = Math.round((sh+wh)/5);
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='#FFFFFF' 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='закрыть окно'><IMG SRC="+imgLocation+" BORDER='1'></A></TD></TR></TABLE></BODY></HTML>");
newWindow.document.close();
newWindow.focus();
}

function popupBasket(goLocation) {
ww=450+60;  wh=320+60;
/* ww=x+60;  wh=y+60;*/
positionCode='';
if(v>=4) {
sw  = screen.width;
sh  = screen.height;
wbx = Math.round((sw-ww)/5); 
wby = Math.round((sh+wh)/5);
if(isExplorer) positionCode='left='+wbx+',top='+wby+',';
if(isNetscape) positionCode='screenX='+wbx+',screenY='+wby+',';
}
newWindow=window.open(goLocation,'foto','width='+ww+',height='+wh+','+positionCode+'toolbar=0,scrollbars=1,resizable=1');
//basketUpdate(goLocation);
newWindow.focus();
}

