/*
'********************************************************************************************
'                                       popup.js
'********************************************************************************************

/********************************************************************************************/
/* Functions:   PopWin                                                                      */
/* Description:	Used for opening new windows.                                               */
/********************************************************************************************/

function PopWin(strURL)

{
	var nLeft = (window.screen.availWidth - 800)/2;
	var nTop = (window.screen.availHeight - 600)/2;
	window.open(strURL,
		'winPopUp',
		'resizable,scrollbars=yes,width=500,height=350,top=' + nTop + ',left=' + nLeft,
		true); 
}