﻿function HighlightOnMouseOver(row,color) {
    document.getElementById(row).style.backgroundColor = color
}

function HighlightOnMouseOver(row,color,cursor,offerid) {
    document.getElementById(row).style.backgroundColor = color
    document.getElementById(row).style.cursor = cursor
    var offercell = document.getElementById(offerid);
    offercell.style.backgroundImage = "url('images/Offer_Gray.jpg')"
}

function RemoveHighlightOnMouseOut(row,offerid) {
    document.getElementById(row).style.backgroundColor = '';
    var offercell = document.getElementById(offerid);
    offercell.style.backgroundImage = "url('images/Offer_White.jpg')"
}

function link(url,NewWindow) {
    if (NewWindow == true)
    {
        window.parent.open(url,"_self")
    }
    else
    {
        window.open(url)
    }
}
