<!--
	/*
	 ********************************************************************************************************************************
	 * FILENAME:		popup.js																									*
	 * PROGRAMMER:		Anthony Nguyen																								*
	 * DESCRIPTION:		This file provides functions for popping up new windows														*
	 * DATE CREATED:	March 26, 2004																								*
	 ********************************************************************************************************************************
	*/
	
	function NewImageWindow(link, winName, x, y) {
		var xadjust = x + 20;
		var yadjust = y + 20;
		var newwin = window.open(link,winName, 'width=' + xadjust + ', height=' + yadjust +', resizable=no, alwaysRaised=yes, scrollbars=no, dependent=no,menubar=no');
	}
//-->