function openScript(url, width, height,event) {
  var x = event.screenX;
  var y = event.screenY - 150 ;
  x=(x-(width/2));

  // if the position is negative then set it to 0
  if (y<0) { y=0 }

  var Win = window.open(url,"",'width=' + width + ',height=' + height + ',left=' + x + ',top=' + y + ',resizable=no,scrollbars=no,menubar=no,status=no' );
}
//========================================================================
//End .js File
//
