function openFull(url) {
netscape = (navigator.appName == "Netscape");
n4 = netscape && (parseInt(navigator.appVersion) >= 4);
explorer = (navigator.appName == "Microsoft Internet Explorer");
ie = explorer && (parseInt(navigator.appVersion) >= 4);
ie4 = explorer && (parseInt(navigator.appVersion) == 4);
ie5 = explorer && (navigator.appVersion.indexOf('MSIE 5') > 0);
mac = navigator.userAgent.indexOf('Mac') > 0;
win = navigator.userAgent.indexOf('Win') > 0;

var width=670;
var height=440;

if (mac) {
  newwin=window.open(url,"","resizable=yes")
//  if (document.all){
    newwin.moveTo(200,200);
    newwin.resizeTo(width,height);
//  }
}
else {
  if (ie) {
    window.open(url,"","fullscreen=no, width=670, height=440, scrollbars=yes, resizable=yes, location=no, status=no, toolbar=no, dependent=no, channelmode=no");
  }
  else {
    newwin=window.open(url,"","channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0")
   // if (document.all){
      newwin.moveTo(200,200);
      newwin.resizeTo(width,height);
   // }
  }
} 
}
