﻿
//With the window size & the element size functions built-in
ModalPopup = function (elem,options) {
	var popup = document.getElementById(elem);
	if (!popup) {return;}
	popup.style.display = "block";
	popup.style.visibility = "visible";
	popup.style.position = "absolute";
	popup.style.zIndex = 80001;
}

ModalPopup.Close = function(id) {
	if (id) {
		document.getElementById(id).style.display = "none";
		document.getElementById(id).style.visibility = "hidden";
	} 
}