function SwapVisible(div1,div2,divisionID){

	var divID = divisionID.id;
	if(divID == div1)
	{
	new Effect.Grow(div2, { duration: 0.3 });
	new Effect.Shrink(div1, { duration: 0.3 });
	}
	else
	{
	new Effect.Grow(div1, { duration: 0.3 });
	new Effect.Shrink(div2, { duration: 0.3 });
	}

}

function ChangePic(OverOrOut,tburl){
	var closeButtonOut = tburl + '/images/reddot1.jpg';
	var closeButtonOver = tburl + '/images/reddot2.jpg';
	
	if (OverOrOut == "over")
	{
		closeButton = closeButtonOver;
	}
	else if (OverOrOut == "out"){
		closeButton = closeButtonOut;
	}
	else 
	{
		closeButton = closeButtonOut;
	}
		document.getElementById('closeBtn').setAttribute('src',closeButton);
}