
function switchFind(id) {

if (id!='uno') switchFindClose('uno');
if (id!='due') switchFindClose('due');
if (id!='tre') switchFindClose('tre');
if (id!='quattro') switchFindClose('quattro');
if (id!='cinque') switchFindClose('cinque');
if (id!='sei') switchFindClose('sei');
if (id!='sette') switchFindClose('sette');
if (id!='otto') switchFindClose('otto');


	obj=document.getElementById(id);
	
	if(obj.className!="open") {
		obj.className="open";
	} else {
		obj.className="";

	}
	

	
}

function switchFindClose(id) {
	obj=document.getElementById(id);
	
		obj.className="";
	
}

function MM_openBrWindow(theURL,winName,features) { //v2.0


if (theURL.substring(0,14)=='/comer/img-gen') {
	 window.open(theURL,winName,features);
} else {
	if (theURL.substring(0,10)=='/comer/Swf') {
		window.open(theURL,winName,features);
	} else {
 window.open('/comer/popup/'+theURL,winName,features);
	}
}
}

