function hideBMenu(){
	if (strCurrentMode == 'View'){
	hideView(intViewIndex);
	}
}

/* Show an object */
function showObject(obj) {
    if (obj.style.display == 'none') {
    	obj.style.display = 'block';
    }
}
/* Hide an object */
function hideObject(obj) {
    obj.style.display = 'none';
} 

