//*****************************************************************
//**  Author: Aaron S. West                                      **
//**  Last Modified: 07.06.03									 **
//**  http://www.trajiklyhip.com                                 **
//*****************************************************************

//function to pop up a new window 
//center window on the screen
//place an htm file into the window

function NewWindow(mypage, myname, w, h, props) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+','+props;
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
