// JavaScript Document

// BNS Web Creations www.b-n-s.com
// Script for Pop Up Window
// in the center of the screen

function NewWindow(mypage,myname,w,h) { 
var winl = (screen.width - w) / 2; 
var wint = (screen.height - h) / 2; 
win = window.open(mypage,myname,'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable=yes,toolbar=no,location=no,status=no,menubar=no'); 
win.focus();
} 
