
  
function openLayer(layerID, popupWidth) {
	oLayer = document.getElementById(layerID);
	oLayer.style.left = ((screen.width - popupWidth) / 2) - 20;
	oLayer.style.top = 50;
	$("div#" + layerID).show();
	
	$("div#popupBg").fadeTo("fast", 0.50);
	$("div#popupBg").show();
	$("#headerFlash").hide();
	$("#reserveFlash").hide();
}

function closeLayer(layerID) {
	$("div#" + layerID).hide();
	$("div#popupBg").hide();
	$("#headerFlash").show();
	$("#reserveFlash").show();
}		