function OpenRefField(Mode, ID, Description, ShortCode){
	var win;
	win = window.open("wfrmRefTableFieldEdit.aspx?mode=" + Mode + "&value=" + ID, "RefField", "width=400,height=300,scrollbars=yes");
	win.focus();
}

function AddRefField(Type){
	var win;
	win = window.open("wfrmRefTableFieldEdit.aspx?mode=a&type=" + Type, "RefField", "width=400,height=300,scrollbars=yes");
	win.focus();
}

function CloseForm() {
	window.close();
}

function SetEmployeeBrowseFocus() {
	if (document.getElementById('APRObrowse__ctl0_APROtxtFirstName_txtbox') != null) {
		document.getElementById('APRObrowse__ctl0_APROtxtFirstName_txtbox').focus();
	}
}

function SetClientBrowseFocus() {
	if (document.getElementById('APRObrowse__ctl0_APROtxtName_txtbox') != null) {
		document.getElementById('APRObrowse__ctl0_APROtxtName_txtbox').focus();
	}
}

function EvaluateClose(Value) {
  if (Value == "OK") {
    alert("Data saved!");
    window.close(); 
  }
}