/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function showmedFlash(){
        obj1 = document.getElementById("takeovermed");
	obj1.style.position = "absolute";
	obj1.style.width = "100%";
	obj1.style.textAlign = "center";
	obj1.style.zIndex = "9999";
	obj1.style.visibility = "visible";
	obj1.style.display = "inline";
	obj1.style.backgroundColor = "#FFF";        

}

function showinfFlash(){
        obj2 = document.getElementById("takeoverinf");
	obj2.style.position = "absolute";
	obj2.style.width = "100%";
	obj2.style.textAlign = "center";
	obj2.style.zIndex = "9999";
	obj2.style.visibility = "visible";
	obj2.style.display = "inline";
	obj2.style.backgroundColor = "#FFF";
}

function showsupFlash(){
        obj3 = document.getElementById("takeoversup");
	obj3.style.position = "absolute";
	obj3.style.width = "100%";
	obj3.style.textAlign = "center";
	obj3.style.zIndex = "9999";
	obj3.style.visibility = "visible";
	obj3.style.display = "inline";
	obj3.style.backgroundColor = "#FFF";
}

function showlatizqFlash(){
        obj4 = document.getElementById("takeoverlatizq");
	obj4.style.position = "absolute";
	obj4.style.width = "100%";
	obj4.style.textAlign = "center";
	obj4.style.zIndex = "9999";
	obj4.style.visibility = "visible";
	obj4.style.display = "inline";
	obj4.style.backgroundColor = "#FFF";
}

function hideFlash(){
        obj1 = document.getElementById("takeovermed");
	obj1.style.display = "none";
	obj1.style.visibility = "hidden";

        obj2 = document.getElementById("takeoverinf");
	obj2.style.display = "none";
	obj2.style.visibility = "hidden";

        obj3 = document.getElementById("takeoversup");
	obj3.style.display = "none";
	obj3.style.visibility = "hidden";

        obj4 = document.getElementById("takeoverlatizq");
	obj4.style.display = "none";
	obj4.style.visibility = "hidden";
}

