// JavaScript Document
function openWin()  {
  url = "new_user.php"                //Set address of new window
  var height = 400                    //Set height
  var width = 500                     //Set width
  var name = "winname"             		//Set window name
  var top = 100                            //Set distance from top
  var left = 100                           //Set distance from bottom
  newwin=window.open(url, name, "fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no,width=" + width + ",height=" + height + ",left=" + left + ",top=" + top);
}