	function employeeSearch(){
	vchEmplText = document.frmSearchEmployee.vchEmplText.value;
	//alert(vchEmplText);

	if(vchEmplText == g_defaultsearchstring){
		document.frmSearchEmployee.vchEmplText.value = "";
	}
	vchEmplText = document.frmSearchEmployee.vchEmplText.value;
	if (vchEmplText.length > -1) {
		vchEmplText = vchEmplText.replace(" ","+");
		vchPath = strAppPath + "/index.asp?menuid=" + menuid + "&context=0&topExpand=" + topExpand + "&subExpand=" + subExpand + "&strUrl=//IPS/custom/IPS_ansatte.asp?vchEmplText=" + vchEmplText + "&mode=" + mode;
		location.href = vchPath;
	}else {
		alert(strSearchAlert);
	}
}	