function openMe(myIntroDiv)
{
	myIntroDiv.fatherDiv.className = "boxOpen";
	myIntroDiv.fatherDiv.style.zIndex = 200;
	myIntroDiv.style.display = "none";

	theIntroDivs = document.getElementsByClassName("intro");
	for (v=0; v<theIntroDivs.length; v++)
	{
		// Automatically close the DIVs which have NOT been moved (position!="absolute")
		if (theIntroDivs[v]!=myIntroDiv && theIntroDivs[v].fatherDiv.style.position!="absolute") {closeMe(theIntroDivs[v].fatherDiv.closeButton);}
	}
}

function closeMe(myButtoncloseDiv)
{
	myButtoncloseDiv.fatherDiv.className = "boxClosed";
	myButtoncloseDiv.fatherDiv.introDiv.style.display = "block";
	myButtoncloseDiv.fatherDiv.style.zIndex = 100; // We need this since the click on the parent DIV calls "focusMe()"
}