// JavaScript Document

function popUpURL(url, width, height) {
  newWindow = window.open(url, "Registration", config="location=0, directories=0, status=0, resizable=1, menubar=0, toolbar=0,                        scrollbars=1, width=" + width + ", height=" + height);
  if (window.focus) {
	newWindow.focus()
  }
}