﻿
function modalWin(url) {

    if (window.showModalDialog) {
        window.showModalDialog(url, "name", "dialogWidth:660px;dialogHeight:650px");
    }
    else {
        window.open(formName, 'name', 'height=650,width=660,toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no ,modal=yes');
    }
}

function openDetails(url) {
    window.location.href = url;

}
function highlight(tableRow, active) {
    if (active) {
        tableRow.originalstyle = tableRow.style.backgroundColor;
        tableRow.originalBackgroundImage = tableRow.style.backgroundImage;
        tableRow.style.backgroundColor = '#dae7ef';
        tableRow.style.backgroundImage = 'none';
    }
    else {
        tableRow.style.backgroundColor = tableRow.originalstyle;
    }
}  