function view(name) {

 var v=parseInt(navigator.appVersion);
 isNetscape=navigator.appName.indexOf('Netscape')>=0;
 isExplorer=navigator.appName.indexOf('Explorer')>=0;
  positionCode='';

  if(v>=4) {
wbx=screen.width-350-screen.width*0.1;
wby=screen.width*0.1;
	if(isExplorer) positionCode=' left='+wbx+',top='+wby+',';
	if(isNetscape) positionCode=' screenX='+wbx+',screenY='+wby+',';
  }

   newWindow=window.open(name,'name','width=350,height=350'+positionCode);

  if(isNetscape && v>=3) newWindow.focus();
   
}

function viewBig(name) {

 var v=parseInt(navigator.appVersion);
 isNetscape=navigator.appName.indexOf('Netscape')>=0;
 isExplorer=navigator.appName.indexOf('Explorer')>=0;
  positionCode='';

  if(v>=4) {
wbx=screen.width-350-screen.width*0.1;
wby=screen.width*0.1;
	if(isExplorer) positionCode=' left='+wbx+',top='+wby+',';
	if(isNetscape) positionCode=' screenX='+wbx+',screenY='+wby+',';
  }

   newWindow=window.open(name,'name','width=350,height=500'+positionCode);

  if(isNetscape && v>=3) newWindow.focus();
   
}

