function cssDisplay(id) {
	if (document.getElementById(id).style.display == "none"){
		document.getElementById(id).style.display = "block"
	}else{
		document.getElementById(id).style.display = "none"
	}
}
function enlargeWindow(imgID){
	settings = 'width=525,height=420,toolbar=no,location=no,directories=no,menubar=no,scrollbars=no,copyhistory=no,resizable=no,left=400,top=300';
	pop = window.open('',imgID,settings);
	if(pop.focus){ pop.focus(); }
	return true;
}