
var currentClassName;
function hiRow(row)
{
	currentClassName = row.className;
	row.className = row.className + ' hover';
}

function uhiRow(row)
{
	row.className = currentClassName;
}

function open_window(url)
{
cwin = window.open(url,"attach","width=350,height=400,toolbar=no,resizable=yes");

}
function ptoutput(theText)
{
document.write(theText);
}

