//--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
// Function Name: ShowPopUp(URL, Wdth, Hght) 
// Description:
//			   1. Opens a popup browser window
//	Parameter: URL: The URL of the page to be opened
//					Wdth: Width of the popup window
//					Hght: Height of the popup window
//--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
function ShowPopUp(URL, Wdth, Hght, Scroll) {
	window.open(URL, 'popup', 'toolbar=0, scrollbars=' + Scroll +', location=0, statusbar=0, menubar=0, resizable=0, width=' + Wdth + ', height=' + Hght + ', left=150, top=50');
}
