// JavaScript Document
function changebg(row)
{
		row.className='rowHover';
}

function restorebg(row)
{
		row.className='row';
}

function goto(link){	
	window.location.href=link;	
}