﻿function staffRowOver(t) {
    var r = $(t).getParent();
    r.getChildren()[0].setStyle('border-bottom', 'solid 1px white');
    r.getChildren()[0].setStyle('cursor', 'pointer');
    r.getChildren()[1].setStyle('border-bottom', 'solid 1px white');
    r.getChildren()[1].setStyle('cursor', 'pointer');

}

function staffRowOut(t) {
    var r = $(t).getParent();
    r.getChildren()[0].setStyle('border-bottom', 'solid 1px black');
    r.getChildren()[1].setStyle('border-bottom', 'solid 1px black');
    r.getChildren()[0].setStyle('cursor', 'normal');
    r.getChildren()[1].setStyle('cursor', 'normal');
}


function staffOpenDetail(ID) {
    //OpenW('StaffDetail.aspx','ID=' + ID, 800, 600, 'no','no','no','yes','no');
    location.href = 'StaffDetail.aspx?ID=' + ID;
}

function backToSite() {

    self.close();

}

