
function showElement(element,property) {
	if (property==null)
	document.getElementById(element).style.display = 'block';
	else
		document.getElementById(element).style.display = 'inline';

}

function hideElement(element) {
	document.getElementById(element).style.display = 'none';

}


function setHTML(element,html) {

	document.getElementById(element).innerHTML=html;
}

function showHiddenLayer(url){
	hideElement('center');
	showElement('hiddenLayer');
	advAJAX.get({
	   url: url, 
	   onSuccess : function(obj) { setHTML('hiddenLayer',obj.responseText)},
	   onError : function(obj) { setHTML('hiddenLayer','<h3>Nie ma takiej strony:/</h3>Strona, którą próbujesz oglądać nie istnieje. Jeśli masz pewność, że powinna, to proszę zgłoś ten fakt administratorowi naszego serwisu - filmy@filmownia.org<br/><br/><a href="" onClick="showMainPage();return false">Powrót</a>'); }
	  })

}

function showMainPage(){
	hideElement('hiddenLayer');
	showElement('center');
}

