// ********************************************************************<BR>
// Client-Side Scripts<BR>
// Copyright (C) 2000-2005 Madison Children's Theatre Inc. All Rights Reserved.<BR>
// <B>Do not modify in design view. Switch to source view.</B><BR>
// ********************************************************************<BR>
// <SCRIPT LANGUAGE=javascript>

// this is for opening pop-up windows
function openWindow( szUrl, szName, nWidth, nHeight )
{	var popupWin = window.open( szUrl, szName,			"left=0,top=0,width=" +nWidth +",height=" +nHeight +",\
			directories=no,fullscreen=no,location=no,menubar=no,\
			resizable=yes,titlebar=no,toolbar=no,status=no"
			);

	if( popupWin )	{
		//popupWin.opener.top.name = "opener";		popupWin.resizeTo( nWidth+5, nHeight+20 );
		popupWin.focus();	}
}
