// <!-- This script and many more are available free online at -->
// <!-- The JavaScript Source!! http://javascript.internet.com -->

// <!-- Begin
var custWin=null;
function NewWindow(mypage, myname, width, height, scroll) {
w = width;
h = height;
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable';
	custWin = window.open(mypage, myname, winprops)
	custWin.focus();
	
}
//  End -->