/*
 *
 *	basic.js
 *	misc basic javascript function.
 *
 */


/*
 * openWin
 *
 * opens a popup with spec'd u (url), n (name), h (height), and w (width) options
 * used in \games\screenshotsContent.jsp
 *
 */
function openWin(u,n,w,h){
	options = 'height=' + h + ',width=' + w + ',directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no';
	newwindow = window.open(u,n,options);
	newwindow.focus();
	return;
}
