<!--   hide this script
var newwindow

// open window
function open_newwindow(theURL, w, h)
{
	newwindow = window.open(""+theURL+"", "newwindow", "width="+w+",height="+h+",toolbar=no,location=no,status=no,resizable=yes,scrollbars=yes,top");
	newwindow.focus()
}

// open window with name
function open_newwindownamed(theURL, name, w, h)
{
	newwindow = window.open(""+theURL+"", ""+name+"", "width="+w+",height="+h+",toolbar=yes,location=yes,status=yes,resizable=yes,scrollbars=yes,top");
	newwindow.focus()
}

// open window bare
function open_newwindowbare(theURL, name, w, h)
{
	newwindow = window.open(""+theURL+"", ""+name+"", "width="+w+",height="+h+",toolbar=no,location=no,status=no,resizable=yes,scrollbars=yes,top");
	newwindow.focus()
}

// close newwindow
function closenewwindow() 
{
        newwindow.close()
}

// back button
function back() 
{
        history.go(-1)
}

// forward button
function forward() 
{
        history.go(1)
}

// refresh button
function refresh() 
{
        history.go(0)
}



// stop hiding -->
