// JavaScript Document

function LaunchSite(page, width, height) { 
		OpenWin = this.open(page, "BooShoot", "toolbar=no, menubar=no ,location=no, scrollbars=no, resizable=no, width=" + width + ", height=" + height + ", top=" + (screen.height/2 - height/2) + ", left=" + (screen.width/2 - width/2) + "\""); 
		//OpenWin = this.open(page, "BooShoot", "toolbar=no, menubar=no ,location=no, scrollbars=no, resizable=no, width=" + width + ", height=" + height + ", top=" + 0 + ", left=" + 0 + "\""); 
} 

// Global vars
var curPage;

// showbox
function showbox(Page,Title) {
	curPage = Page;
	document.getElementById('LightBoxBackground').style.visibility = "visible";
	document.getElementById('LightBox').style.visibility = "visible";
	document.getElementById('LightBoxTitle').innerHTML = Title;
	document.getElementById('LightBoxBody').src = "Loading.html";
	var loadpage = setTimeout("loadpage()",1000);
	//var t=setTimeout("alert('5 seconds!')",1000)
}
function loadpage(Box,Page) {
	document.getElementById('LightBoxBody').src = curPage;
}

// close the box
function closebox(Box) {
	document.getElementById('LightBoxBackground').style.visibility = "hidden";
	document.getElementById('LightBox').style.visibility = "hidden";
	document.getElementById('LightBoxBody').src = "Loading.html";
}

