var div_shown = 0;
function ShowDiv(div){
	if(div_shown==0){
		document.getElementById(div).style.display="block";
		div_shown=1;
	}
	else{
		document.getElementById(div).style.display="none";
		div_shown=0;
	}
}//end ShowDiv()

function ShowMore(){
	if(document.getElementById('picture').style.styleFloat=='left'){
		document.getElementById('picture').style.marginRight="5px";
	}
	if(document.getElementById('picture').style.styleFloat=='right'){
		document.getElementById('picture').style.marginLeft="5px";
	}
	document.getElementById('more').style.display="block";
	document.getElementById('show_more').style.display="none";
}
function ge(e){
	return document.getElementById(e);
}