<!--

function popup(htmlFile, winName, popW, popH) {
	var handle = window.open(htmlFile, winName, 'resizable=yes,scrollbars=yes,status=no,menubar=no,toolbar=no,width='+popW+',height='+popH+',left=40,top=40');
	if (handle.focus) {handle.focus();}
}

function showHide(elmName) {
	try {
		var elm = document.getElementById(elmName);
		elm.style.display = ((elm.style.display=='')? 'none' : '');
	} catch(e) {;}	
}

function setStatus(statusTxt) {
	window.status = statusTxt;
	return true;
}
// -->



