function highlight(id)
{
    id.style.backgroundRepeat="no-repeat";
	id.style.backgroundRepeat="repeat-x";
    id.style.backgroundImage="url(../layout/img/bkg_result.jpg)";
    id.style.cursor="pointer";
}

function unhighlight(id)
{
    id.style.backgroundImage="";
}

function displaydetail(url)
{
    document.location.href = url;
}
