// JavaScript Document
function aler_info(infoId,alertId){
	var myAlert = document.getElementById(alertId);
	var reg = document.getElementById(infoId);
	var mClose = document.getElementById("close");
	 
	 myAlert.style.display = "block";
	 myAlert.style.position = "absolute";
	 myAlert.style.top = "30%";
	 myAlert.style.left = "50%";
	 myAlert.style.marginTop = "-75px";
	 myAlert.style.marginLeft = "-150px";
	 mybg = document.createElement("div");
	 mybg.setAttribute("id","mybg");
	 mybg.style.background = "#000";
	 mybg.style.width = "100%";
	 mybg.style.height = "100%";
	 mybg.style.position = "absolute";
	 mybg.style.top = "0";
	 mybg.style.left = "0";
	 mybg.style.zIndex = "500";
	 mybg.style.opacity = "0.3";
	 mybg.style.filter = "Alpha(opacity=30)";
	 document.body.appendChild(mybg);
	 
	 document.body.style.overflow = "hidden";

	mClose.onclick = function()
	{
		myAlert.style.display = "none";
		mybg.style.display = "none";
	}
	
}