/* Super-advanced Footer positioning engine */

function applyFooter()
	{
	var footerheight = 189; //Constant.
	var windowHeight = 0;
	var bodyHeight = document.body.offsetHeight;
	var longBody = false;
	var cssSuffix = "Aligned";
	if (document.all)
		{ if (document.documentElement) { vHeight = document.documentElement.clientHeight; } else { vHeight = document.body.clientHeight } }
		else { windowHeight = window.innerHeight; }

	bodyHeight += footerheight;
	if (bodyHeight > windowHeight) { longBody = true; cssSuffix = "";}
	//return "Window height:"+windowHeight+", Body height:"+bodyHeight+", overFlown:"+longBody;
	//return cssSuffix;
	
    document.write('<div id="footer'+cssSuffix+'"><div>');
    document.write('© 2009 Minden jog fenntartva | <a href=\"http://www.amadeus.com/hu/hu.html\">Amadeus Magyarország Kft.</a> | <a href=\"mailto:info@amadeusvilagutazok.hu\">info@amadeusvilagutazok.hu</a>');
	document.write('</div></div>');		
	
	}


