// JavaScript Document
function showLayer(Content,ContentHeight) {
	document.getElementById("TopLayerContent").style.height = ContentHeight + "px";
	document.getElementById("TopLayer").style.visibility = "visible";
}

function closeLayer() {
	document.getElementById("TopLayer").style.visibility = "hidden";
	getRequest('blank.html','TopLayerContent');

}

