function swapImage(imgName,newImg){
    if ((navigator.appName == 'Netscape' && parseFloat(navigator.appVersion) >= 3) || (parseFloat(navigator.appVersion) >= 4)){
     eval('document.' + imgName + '.src = "' + newImg + '"');
        }
}

inter2=null;
function openPicFX(url,x,y){
  if (inter2==null){
    eval("inter2=window.open(\"\",\"inter\",\"status=1,toolbar=0,directories=0,menubar=0,personalbar=0,titlebar=0,resizable=0,scrollbars=0,width="+x+",height="+y+",left=10,top=10\")");
  }else{
    if (inter2.closed){
      eval("inter2=window.open(\"\",\"inter\",\"status=1,toolbar=0,directories=0,menubar=0,personalbar=0,titlebar=0,resizable=01,scrollbars=0,width="+x+",height="+y+",left=10,top=10\")");
    }else{
      top.inter2.location.href="blank.html";
      top.inter2.moveTo(10,10);

      top.inter2.location.href=url;
      top.inter2.focus();
    }
  }
  top.inter2.document.open();
  top.inter2.document.write("<html><body bgcolor=white leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><img src="+url+"></body></html>");
  top.inter2.document.close();
}
