// JavaScript Document Open Pop-Up Window from homepage
// JavaScript Document

function NewWin()
{
winl = (screen.width - 740) / 2;
wint = (screen.height - 515) /2;
newWindow = window.open ("gen/home.html", "newWin", "width=740, height=515, left="+winl+", top="+wint+"")

}
