
function SetSelectedRow(theRow)
{
	//	theRow.setAttribute("class", "Milleteknik_ProductTable_CellSelected");
	//	theRow.setAttribute("className", "Milleteknik_ProductTable_CellSelected");
}

function SetUnSelectedRow(theRow)
{
	//	theRow.setAttribute("class", "Milleteknik_ProductTable_Row");
	//	theRow.setAttribute("className", "Milleteknik_ProductTable_Row");
}

function SetUnSelectedRowOdd(theRow)
{
	//	theRow.setAttribute("class", "Milleteknik_ProductTable_RowOdd");
	//theRow.setAttribute("className", "Milleteknik_ProductTable_RowOdd");
}

function ShowProductDetails(prodId)
{
	//	window.document.location.href = "ProductDetails.aspx?id=" + prodId;
}

function ShowProduct(prodName)
{
	//	window.document.location.href = "/Produkter/Info/" + prodName + ".aspx";
}

function MilleteknikMouseOver(ColumnIndex)
{
	/*
	//var cel = window.document.getElementById("ctl00_ContentPlaceHolderMain_celCol" + ColumnIndex);
	var span1 = window.document.getElementById("ctl00_ContentPlaceHolderMain_celCol" + ColumnIndex + "Span0");
	var span2 = window.document.getElementById("ctl00_ContentPlaceHolderMain_celCol" + ColumnIndex + "Span1");

	window.alert(span1.innerHTML);
	window.alert(span2.style.display);

	if (span1.innerHTML != "&nbsp;" && span2.style.display == "none")
	{
		span2.style.display = "block";
	}
	*/
}

function MilleteknikMouseOut(ColumnIndex)
{
	/*
	//var cel = window.document.getElementById("ctl00_ContentPlaceHolderMain_celCol" + ColumnIndex);
	var span1 = window.document.getElementById("ctl00_ContentPlaceHolderMain_celCol" + ColumnIndex + "Span0");
	var span2 = window.document.getElementById("ctl00_ContentPlaceHolderMain_celCol" + ColumnIndex + "Span1");

	alert(span1.innerHTML);
	alert(span2.style.display);

	if (span1.innerHTML != "&nbsp;" && span2.style.display == "block")
	{
		span2.style.display = "none";
	}
	*/
}


