//***********************************************************************************
// Name		:	OpenWindowJ.inc
// Purpose	:	Spawns a new browser window 
// Author	:	Lisa Sepanski
// Date		:	04/07/00	(created)
// Revisions	:
//	Name/Date	Comments
//***********************************************************************************
		
function DocWindow(strURL,strFileName) {

	strURL= ""+strURL+escape(strFileName)
	objOpen = window.open(strURL,"frmDoc","menubar=yes,status=yes,location=yes,scrollbars=yes,resizable=yes,width=600,height=550");
}
function TranslateDoc(strURL,strFileName) {

	strURL= ""+strURL+escape(strFileName)
	return strURL
}
function RptWindow(strURL,strFileName) {

	strURL= ""+strURL+strFileName
	objOpen = window.open(strURL,"frmDoc","menubar=yes,status=yes,location=yes,scrollbars=yes,resizable=yes,width=825,height=620");
}
