function navig(xid){
	var row = document.getElementById(xid);
	row.className='highlight';
	row.onmouseout = new Function("this.className='resultsads'");
	var link = row.getElementsByTagName("a");
	if(link[0].onclick){
		row.onclick = eval(link[0].onclick);
	}
	else{
		row.onclick = new Function("document.location.href='" + link[0].href + "'");
	}
}