/**********************************************************************************   
*   Copyright (C) 2002 Tiera Software, Inc. All rights reserved.
*********************************************************************************/

function open_dialogue(pPath,pName,pWidth,pHeight,pScroll)
{//open all centered dialogue boxes with this routine
	//document.location = pPath; 
	
	var posLeft = (screen.availWidth - pWidth)/2;
	var posTop = (screen.availHeight - pHeight)/2;
	var strFeatures = "";
	var oWin;
	
	
	strFeatures += "width=" + pWidth + ",height=" + pHeight + ", left=" + posLeft;
	strFeatures += ",top=" + posTop + ",toolbar=0,scrollbars=" + pScroll + ",alwaysRaised=1,status=1,resizable=1";
        
	oWin = window.open(pPath, pName, strFeatures);
	oWin.focus();	
 
}
function open_window(pPath,pName)
{//open all centered dialogue boxes with this routine
	//document.location = pPath; 
	
	var strFeatures = "";
	var oWin;
	

	oWin = window.open(pPath, pName);
	oWin.focus();	
 
}
