function ParameterizedPopup(cFile,toolbar,menubar,location,scrollbars,resizable,height,
	width,top,left,cWindowHandle,bGetFocus)  
	{
	/*Non self-explanatory parameters:
	cWindowHandle: String--the name of the window being created...if it is left blank a new window will
		open each time..if a name is given, different calls to the function will open pages in the same 
		window
	
	bGetFocus: Boolean -- whether or not get focus will be called after the window is opened...it
	can only be called if the page being opened is within our website...if you popup a window to another 
	site (i.e. www.adobe.com) it must be set to false
*/		
	var cWndProps = "toolbar=" + toolbar
				   +",menubar=" + menubar
				   +",location=" + location
				   +",scrollbars=" + scrollbars
				   +",resizable=" + resizable 
				   +",width=" + width 
				   + ",height=" + height
				   +",top=" + top
				   +",left="+left; 

	detailWindow = window.open(cFile, cWindowHandle, cWndProps)
	if (bGetFocus)detailWindow.window.focus();
		
}	