<!--
function bikinJendela(sURL,winName,lebar,tinggi) { //v2.0
  	var features = "";
  	features = "width="+lebar+",height="+tinggi;
  	window.open(sURL,winName,features);
}

function biqinJendela(sURL,winName,lebar,tinggi) { //v2.0
  var features = "";
  features = "width="+lebar+",height="+tinggi+",scrollbars,resizable";
  window.open(sURL,winName,features);
}

var popup="FUJITSU \n Copyright © 2001";
function noway(go) {
  if (document.all) {
    if (event.button == 2) {
      alert(popup);
      return false;
    }
  }
  else {
    if (go.which == 3) {
      alert(popup);
      return false;
    }
  }
}
if (!document.all) {
document.captureEvents(Event.MOUSEDOWN);
}
//document.onmousedown=noway;
// --> 