function infoHide(){
	document.getElementById("pictureInfo").style.display = "none";
}

function m(){
	window.status="Done";
}

function picInfo(){
	if(document.getElementById('morelink').innerHTML == 'More'){
		document.getElementById('morelink').innerHTML = "Less";
	}
	else document.getElementById('morelink').innerHTML = "More";
	Effect.toggle('pictureInfo','appear');
}

function openComments(id){
	date = id;
	commentwindow = window.open("comments.php?"+date, "commentwindow", "scrollbars=1 status=0, toolbar=0, location=0, resizeable=0, height=450, width=300");
	commentwindow.moveTo(100,100);
}

function tagcolor(cell){
	me = document.getElementById(cell);
	if(me.className == 'tagbox'){
		me.className = 'tagboxselected';
	}
	else{ 
		me.className = 'tagbox';
	}
}
