/*
		*******************************************************************
		Filename:	popit.js
		Type:			Function Page
		Purpose:		contains the popit function which pops up a window with 
						specified url location.
		Author:		Tony Morgan
		Date:			03/08/01
		*******************************************************************
*/



// Opens a window
	function popit(sLoc) {

		iWidth = 650;
		iHeight = 520;
		x = 100;
		y = 100;

		thisone = window.open(sLoc,"Popup","scrollbars=yes,Left=" + x + ",Top=" + y + ",Width=" + iWidth + ",Height=" + iHeight);
		thisone.focus();

	}
