﻿
function onChangeColor(box){
}

function openPopup(targetURL,height,width,resizable){
    var openPopup = window.open(targetURL,"popupPage","resizable="+resizable+",height="+height+",width="+width+"");
    if(window.focus){
        openPopup.focus();
    }
}

function onChangeVisible(boxOpen,boxClose){
    document.getElementById(boxOpen).style.display='';
    document.getElementById(boxClose).style.display='none';
}

function setValue(value){
 opener.document.getElementById( TargetControlId ).value = value;
}

function objSetValue(objTarget,value){
    document.getElementById(objTarget).value = value;
}