<!--

function openpopup(page,name,w,h,scroll,status,resize,xpos) {
 if(xpos) { LP = xpos; }
 else { LP = ((screen.width) ? (screen.width-w)/2 : 0); }
 TP = ((screen.height) ? (screen.height-h)/2 : 0);
 settings = 'height='+h+',width='+w+',top='+TP+',left='+LP+',scrollbars='+scroll+',status='+status+',resizeable='+resize+'';
 var Bla_open = window.open(page,name,settings);
 Bla_open.focus();
} // endfunction openpopup

function dopop(page,name,w,h,scroll,status,resize,xpos) {
 openpopup(page,name,w,h,scroll,status,resize,xpos);
}

function confirmDelete(MSG) {
    var is_confirmed = confirm(MSG);
    return is_confirmed;
}

function activeRegister(set,ActiveID) {
 for(i=0;i<=eval(set+'_count');i++) {
	 color = (i == ActiveID )? "#E2E2E2" : "#D4D4D4";
    tes = set+'_'+i;
    chgBg( document.getElementById( tes ) , color );
 }
}

function chgBg(obj,color){

 if (document.all || document.getElementById) {
  obj.style.backgroundColor = color;
 }

}


//-->