var printWin = null;
//---------------------------------------------------------------------------------------
function handleWWWchange(selObj)
{
	var v = selObj.options[selObj.selectedIndex].value;
	if (v != ""){
		window.open(v);
	}
	selObj.selectedIndex = 0;
}
//---------------------------------------------------------------------------------------
function handleCATchange(strSBValue, formObj)
{
	if (strSBValue != "")
	{
		formObj.action = strSBValue;
		formObj.submit();
	}
}
//---------------------------------------------------------------------------------------
function printContent(sURL)
{
	if (printWin )
	{
		(printWin.closed) ? (printWin = null) : (printWin.close());
	}
	printWin = window.open(sURL, "print", "left=50,top=50,scrollbars=1,resizable=1,width=640,height=600,status=1,toolbar=0,location=0,titlebar=0,menubar=1,directories=0");
	printWin.focus();
}
//---------------------------------------------------------------------------------------
function showHint(aObj)
{
	window.status = aObj.title;
	return true;
}
//---------------------------------------------------------------------------------------
function hideHint()
{
	window.status = "";
	return true;
}