function showHide(pLink, pId)
{
	var link = document.getElementById(pLink);
	var el = document.getElementById(pId).style;
	
	if(el.display=="none") {
		el.display = "block";
		link.innerHTML = "Hide";
	}
	else {
		el.display = "none";
		link.innerHTML = "Show";
	}
}


function showHideDetails(pIndex) {

var height = $("#rRow"+pIndex).height();

if(height == 42) {
	$("#rRow"+pIndex).animate( {height:"100%"},1);
	$("#rRow"+pIndex+" ul").show();
	$("#link"+pIndex).html("[-] Details");
}
else {
	$("#rRow"+pIndex).animate( {height:'42px'},1);
	$("#rRow"+pIndex+" ul").hide();
	$("#link"+pIndex).html("[+] Details");
}

}


