﻿// JScript File Exetend dd_uncompressed

 function convertNow(byIds) {
  //MSDropDown.showIconWithTitle(false);
  try {
    if(byIds==undefined) {
      MSDropDown.init();
    } else {
      MSDropDown.init(byIds);
    }		    
  } catch(e) {
    alert(e);
  }	    
}

function disabledcombo(id, disabled, refh) {
  document.getElementById(id).disabled = disabled;
  if (refh) {//custom function
    try {
    if(document.getElementById(id).refresh!=undefined) document.getElementById(id).refresh();
    } catch(e) {
      alert(e);
    }	      
  }      
}

function loadUrl(byURL) {
  if (byURL != undefined) {
    setTimeout(function(){window.location = byURL;}, 0);
  }  
}

function output(obj, val) {	
}
