function goto(url)
{
	window.location = url;	
}

function highlight(tr)
{
	tr.className = 'highlight';
}

function unhighlight(tr)
{
	tr.className = '';	
}

if (navigator.userAgent.toLowerCase().indexOf("chrome") >= 0) {
	$(window).load(function(){
		$('input:-webkit-autofill').each(function(){
			var text = $(this).val();
			var name = $(this).attr('name');
			$(this).after(this.outerHTML).remove();
			$('input[name=' + name + ']').val(text);
		});
	});
}
