
  	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) {
    		location.href = "ProductDetails.aspx?id=" + prodId;
    	}

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

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

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

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

    	function MilleteknikMouseOut(ColumnIndex) {
    		var cel = document.getElementById("ctl00_ContentPlaceHolderMain_celCol" + ColumnIndex);
    		var span1 = document.getElementById("ctl00_ContentPlaceHolderMain_celCol" + ColumnIndex + "Span0");
    		var span2 = 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";
    		}
    	}
