function openPage(page_url,divids) {
$(divids).html("<div style='text-align:center;color:#CEBCA7;padding-top:30px' >Loading...</div>").load(page_url);
}

function showhidediv(divids,showhide){ //showhide 1 show,showhide 2 hide
if(showhide==1)$(divids).show();
if(showhide==2)$(divids).hide();
}

function turnoffall(){
	document.getElementById('M1').className='';
	document.getElementById('M2').className='';
	document.getElementById('M3').className='';
	document.getElementById('M4').className='';
	document.getElementById('M5').className='';
	document.getElementById('M6').className='';
}

/*ex: showhidediv('#leftid',1);*/
