function PopUpWindow (URL, Name, Width, Height, X, Y) {
	// PopUpWindow v1.0
	// Witten by Grant Taylor for Riverview Technologies Inc.
	//
	// PopUpWindow takes 6 paramiters as follows in the order that follows.
	//
	// 1) URL of the file to be opened in the new window.
	// 2) Name of the new window.
	// 3) Width of the new window.
	// 4) Height of the new window.
	// 5) X cordinent of the new window.
	// 6) Y cordinent of the new window.
	//
	// To call this script simply use the following code in your file:
	// <script src="<path to this script>" type="text/javascript"></script>
	//
	// To utalize the script do the following:
	// <a href="javascript:PopUpWindow('URL', 'Name', 'Height', 'Width', 'X', 'Y')">bla</a>
	//
	window.open(URL, Name, "width=" + Width + ",height=" + Height + ",left=" + X + ",top=" + Y);
}
