function ieDisplay(objid,way){
	var obj = document.getElementById(objid);
	try{
		obj.style.display = (way)?'inline':'none';
	}catch(e){
		window.status='JS Exception ('+e+')';	
		//alert('JS Exception ('+e+') objid('+objid+')');
	}
}
