function showStatus(sMsg) {
		window.status = sMsg ;
		return true ;
}

function getPage(thePage,wt,ht){
		leftPos= (screen.width-wt)/2
		topPos = (screen.height-ht)/2
		newWin1 = window.open(thePage,'bWin','toolbar=no, directories=no, resizable=no, scrollbars=no, menubar=no, location=no, status=yes, left='+leftPos+',top='+topPos+',width='+wt+',height='+ht)
}
function getScrollPage(thePage,wt,ht){
		leftPos= (screen.width-wt)/2
		topPos = (screen.height-ht)/2
		newWin1 = window.open(thePage,'bWin','toolbar=no, directories=no, resizable=no, scrollbars=yes, menubar=no, location=no, status=yes, left='+leftPos+',top='+topPos+',width='+wt+',height='+ht)
}