function showStatus(txt) {
	
	window.status = txt;
	return true;
}

function sendHelp(url, w, h) {
	
	var newbh = window.open(url, "Information", "width=" + w + ", height=" + h + ", location=0, directories=0, copyhistory=0, scrollbars=1");
	newbh.focus();
}

