function Sw(oid) {
	isrc=document.getElementById('pimg'+oid).src;
	if (document.getElementById('divt'+oid).style.display=='none') {
		document.getElementById('divt'+oid).style.display='block';
		nsrc=isrc.substr(0,isrc.lastIndexOf('.')-1)+'m.gif';
	} else {
		document.getElementById('divt'+oid).style.display='none';
		nsrc=isrc.substr(0,isrc.lastIndexOf('.')-1)+'p.gif';
	}
	document.getElementById('pimg'+oid).src=nsrc;
}

function ExpCon() {
	tot=16;
	for (i=0; i<tot; i++) {
		isrc=document.getElementById('pimg'+i).src;
		nsrc=isrc.substr(0,isrc.lastIndexOf('.')-1)+'m.gif';
		document.getElementById('pimg'+i).src=nsrc;
		document.getElementById('divt'+i).style.display='block';
	}
}

