/**
 * @author acefx
 */
//SHOW ALL FLOATING WINDOWS
function mod()
{ 
	document.getElementById(flo).style.display = "block";
	document.getElementById(flo).innerHTML = displa;
}

//CLOSE ALL FLOATING WINDOWS
function dimod()
{
	var us = flo;
	document.getElementById(us).style.display="none";
	document.getElementById("veil").style.display="none";
}

//VAIL ON SCREEN
function vail()
{	
	var cov = document.getElementById("veil");
	var wid = Math.round(document.body.clientWidth)+"px";
	var hei = Math.round(document.body.clientHeight)+"px";
	
	cov.style.display = "block";
	cov.style.width = wid;
	cov.style.height = hei;
}
