// JavaScript Document

function loadWorldtrip(xml) {
	var so = new SWFObject("/fileadmin/swf/worldtrip/main.swf", "worldtrip", "100%", "100%", "7", "#ffffff");   
	so.addParam("quality", "best");
    so.addParam("wmode", "opaque");
	so.addVariable("xmlData", xml);	
    so.write("worldtrip_background");
}

function sizeWorldtrip () {
	
	if (navigator.appName != "Netscape") {
		
		var viewportheight;
		if (typeof document.documentElement != 'undefined' && typeof document.documentElement.clientHeight != 'undefined' && document.documentElement.clientHeight != 0) {
			viewportheight = document.documentElement.clientHeight
		} else {        
		    viewportheight = document.getElementsByTagName('body')[0].clientHeight
		}

		var x = document.getElementById('worldtrip_foreground');
		
		if (x) {
			x.style.height = viewportheight + 'px';
		}
		
	}
}

$(document).ready(
	function() {
		sizeWorldtrip();
	}
);
