﻿function SetBorder(ctrl) {
    document.getElementById(ctrl).style.border = "solid #493422 1px";
    document.getElementById(ctrl).style.cursor = "pointer";
    document.getElementById(ctrl).style.background = "lightgray";    
}
function ClearBorder(ctrl,backColor) {
    document.getElementById(ctrl).style.border = "solid " + backColor + " 1px";
    document.getElementById(ctrl).style.cursor = "arrow";
    document.getElementById(ctrl).style.background = backColor;    
}

function Editor(bid) {
    window.location = "ContentEditor.aspx?BID=" + bid;
}
function Uploader(bid) {
    window.location = "ContentUploader.aspx?BID=" + bid;
}

