// JavaScript Document

function showPopup(index) {

	index = "popup" + index;
	
	var obj = document.getElementById(index);
	obj.style.display="block";

}

function hidePopups() {

	var obj;
	var id;
	
	id = "popup";
	
	for (var i=1; i<=8; i++) {
		index = id + i;
		document.getElementById(index).style.display = "none";
	}

}


function JumpToIt(frm) {
	
	if (checkAge(frm)) {
	
		var newPage = frm.url.options[frm.url.selectedIndex].value
		if (newPage != "None") {
			window.open(newPage)
		}
	}
	
}

function checkAge(frm) {
	if (!frm.confirmage.checked) {alert("Please check the box in order to continue"); return false;}
	return true;
}

function popupUpContact()
{
	window.open('http://www.enjoyillinois.com/Cotact-us.aspx','','height=255,width=420,left=150,top=150,resizable=no,scrollbars=no,toolbar=no,status=no,titlebar=no');
}

