function menuover(param){
	document.getElementById(param).style.backgroundColor='#F4F1E9';
}
function menuout(param){
	document.getElementById(param).style.backgroundColor='';
}
function showhide (elementId) {
	 if( document.getElementById ) {
        //DOM
        var theElement = document.getElementById( elementId );
    } else {
        if( document.all ) {
            //Proprietary DOM
            var theElement = document.all[ elementId ];
        } else {
            //Create an object to prevent errors further on
            var theElement = new Object();
        }
    }
	tbl =  theElement;
	if (tbl.style.display == 'none')
		tbl.style.display = 'inline';
	else 
		tbl.style.display = 'none';
}
function flash_fix(f) {
	document.write(f); 
}
