// JavaScript Document

/* This function takes the parameter newWin from the link */
/* and opens that window with the defined parameters */

 function newWindow(newWin) {
      signWindow = window.open(newWin, "newWin", "width=825px,height=625px,toolbars=no,location=no,scrollbars=yes")
      signWindow.focus()
 }