﻿// JScript File

function QuotesTableOnClick(qid) {
    location.href='/QuotesDetail.aspx?q='+ qid
}

function QuotesTableOnMouseOver(theTR) {
    theTR.style.backgroundColor = '#999999'
}

function QuotesTableOnMouseOutW(theTR){
    theTR.style.backgroundColor = '#ffffff'
}

function QuotesTableOnMouseOutG(theTR) {
    theTR.style.backgroundColor = '#f1f1f1'
}

function QuotesTableOnClickInd(qid) {
    location.href='/IndicesDetail.aspx?i='+ qid
}

function DerivativesTableOnMouseOver(theTR) {
    theTR.style.backgroundColor = '#999999'
}

function DerivativesTableOnMouseOutW(theTR){
    theTR.style.backgroundColor = '#ffffff'
}

function DerivativesTableOnMouseOutG(theTR) {
    theTR.style.backgroundColor = '#f1f1f1'
}
