
function HighlightRow( row )
{
	
	row.style.backgroundColor = "#ff99cc";
}

function RevertRow( row )
{
	row.style.backgroundColor = "#cc6699";
}

function PrintBookmark( strLink, strTitle )
{
	var ver = navigator.appName
	var num = parseInt(navigator.appVersion)
	if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) 
	{
	   document.write("<a title=\"Click here to add this page to your Favourites\" HREF=\"javascript:window.external.AddFavorite('"+strLink + "','" + strTitle + "');\" class='footerLink'>BOOKMARK THIS PAGE</a>")
	}
}
