	function printCurrentPage(isPrint){		
		if(isPrint){
			if(isCyberBrowser()){
				if (window.external)
				    if (window.external.cb_printpagefit)
				    	return window.external.cb_printpagefit();
				   return false;
			}			
		}
		return;
	}
	// Returns TRUE if this page loaded from CyberBrowser
	function isCyberBrowser() {
		if (window.external)
			return (window.external.cb_getstatus);
		return false;
	}
