function OverActiveRow(Row)
{
	Row.style.backgroundColor= '#ddeeff';
}
		
function ClickActiveRow(link)
{
	if(link != "")
	{
		if(window.location.href.indexOf("&Product") > 0)
			window.location = window.location.href.substring(0,window.location.href.indexOf("&Product")+9) + link;
		else
			window.location = window.location.href + "&Product=" + link;
	}
}

function OutActiveRow(Row)
{
	Row.style.backgroundColor= '';
}
	
function GoBack()
{
	window.history.go(-1);
}

function SetProduct()
{
	if(window.location.href.indexOf("&Product") > 0)
	{	
		var product = window.location.href.substring(window.location.href.indexOf("&Product")+9,window.location.href.length); 

		DisplayProduct(product);
	}
}

function DisplayProduct(Product)
{
	if(document.getElementById("Product" + Product))
	{
		document.getElementById("Product" + Product).style.display = "";		
		document.getElementById("DisplayProductTable").style.display = "none";	
	}
}