<!--   hide this script from non-javascript-enabled browsers
var newwindow

// open window
function open_newwindow(filenam, w, h, scrol)
{
        newwindow = window.open(""+filenam+"", "newwindow", "width="+w+",height="+h+",toolbar=no,resizable=no,scrollbars="+scrol+",top");
	newwindow.focus()
}


// close newwindow
function closenewwindow() 
{
	newwindow.close()
}


// status bar message
var canshow = navigator.userAgent != "Mozilla/4.0 (compatible; MSIE 4.0; Mac_PowerPC)";

function showmsg(s) 
{
	document.returnValue = false;
  	if (canshow) 
		{
    		window.status = s;

    		document.returnValue = true;
		}
}

// stop hiding -->
