function showMore1() {
	id=document.getElementById("moreInfo1");
	id.className="showmore";
}
function showLess1() {
	id=document.getElementById("moreInfo1");
	if(id!="") id.className="showless";
}
function showLess() {
	showLess1();
}
function code1() {
	showLess();
}