/************************************************************************
 *   File: site_functions.js
 *   Author: Kenneth Reeser 
 *   Date: 04/13/2008
 *   Description: This file contains global javascript functions that
 *   may be reused in more than one page of the site.
 */
 
function newPopupWindow1(url, title, x, y)
{   
	var attr = 'width=300,' +
		'height=150,' +
		'left=' + x + ',' +
		'top=' + y + ',' +
		'resizable=no,' +
		'scrollbars=yes,' +
		'toolbar=no,' +
		'location=no,' +
		'status=no,' +
		'menubar=no';
	window.open(url,title,attr);
}
