function toggleMenu(objID) {
	if (!document.getElementById) return;
	var ob = document.getElementById(objID).style;
	ob.display = (ob.display == 'block')?'none': 'block';
}

function openExpenseReporter() {
	ewin=window.open('http://209.11.127.102/expenses','','width=1000,height=650,left=0,top=0,scrollbars=1,resizable=1,status=1,toolbar=0,location=0,directories=0,menubar=0,copyhistory=0'); ewin.focus(); 
} 

function openServiceLevelTarget() {
	document.getElementById('details').src = '../sps_ts/service_level_target.html';
} 


function validateClient() {
	if ( document.getElementById('clientID').value.toUpperCase() == 'BOLDT' ) {
		StartProductionControlBoldt();
	} else {
		alert('Client "' + document.getElementById('clientID').value + '" not found.');
	}
}

