function view(imageName,imageX,imageY) {
	  xxx=imageX+20;
	  yyy=imageY+20;
	  
	  if (document.images) {
	    source = imageName;
	  }
	  
	  wstyle='toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=' + xxx + ',height=' + yyy;
	  popup = window.open(source,'_blank',wstyle);
	  
	  if( navigator.appName.substring(0,8) == "Netscape" ) {
	    popup.location = source;
	  }
}

