function getObject(name) {
	var ns4 = (document.layers) ? true : false;
	var w3c = (document.getElementById) ? true : false;
	var ie4 = (document.all) ? true : false;
	if (ns4) return eval('document.' + name);
	if (w3c) return document.getElementById(name);
	if (ie4) return eval('document.all.' + name);
	return false;

}

function popUp(URL, WIDTH, HEIGHT) {
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=" + WIDTH + ",height=" + HEIGHT + ",left = 540,top = 462');");
}

function liveAssistPopUpFromForm(theForm) {
    department_id = theForm.department_id.value;
    liveAssistPopUp(department_id);
}

function liveAssistPopUp(department_id) {
    popUp("/liveassist/liveassistPopUp.php?did="+department_id, 400, 300);
}


function urlRedirect(url) {
    setTimeout("top.location.href = '" + url +"'",1);
}
function ToggleDisplay(elementid) {
	var display = document.getElementById(elementid).style.display;
	if (display == "") {
		document.getElementById(elementid).style.display = "none";
	}
	else {
		document.getElementById(elementid).style.display = "";
	}
}
