﻿function intoRow(id) {
    var _classname = document.getElementById(id).className;
    _classname = _classname.substring(0, _classname.length - 10);
    document.getElementById(id).className = _classname + " selected";
}

function outOfRow(id) {
    var _classname = document.getElementById(id).className;
    _classname = _classname.substring(0, _classname.length - 8);
    document.getElementById(id).className = _classname + " unselected";
}

function LaunchDocument(url) {
    window.open(url, "_blank", "left=50,height=600,width=800,top=50,toolbar=no,resizable=yes");
    return false;      
}

