var currentOpen = -1;
function toggle(ind){
	if (currentOpen > -1) {
		document.getElementById("scheda-" + currentOpen).style.display = "none";
	}
	if (currentOpen != ind) {
		currentOpen = ind;
		document.getElementById("scheda-" + currentOpen).style.display = "block";
	} else {
	currentOpen = -1;
	}
}

try{
if (window.top == window.self) {
	//effettua una ridirezione se la pagina non si trova nella sua cornice
	var newlocation = window.location.href.substr(7);
	if (newlocation.indexOf("meetin.businessfindershop.it") > -1) {
		var slashindex = newlocation.indexOf("/");
		if (slashindex == -1 || slashindex == newlocation.length - 1) {
			newlocation = "";
		} else {
			newlocation = "&url=" + encodeURIComponent(newlocation.substr(newlocation.indexOf("/") + 1));
		}
		//newlocation = "http://aethranet.websolute.it/viewdoc.asp?co_id=124" + newlocation;
		//newlocation = "http://aethranet.websolute.it/viewdoc.asp?co_id=124";
		newlocation = "http://www.aethra.net/viewdoc.asp?co_id=124";

		if (window.location.href == "http://meetin.businessfindershop.it/default.html") {
			window.location.href = newlocation;
		}
	}
}
} catch (err) { }
