function initVFVideo(path,auto,fullscreen,width,height) {
	
	var container = document.getElementById("VidCon");
	
	container.style.display = 'block';
	document.location.href = "#top";
	container.innerHTML = "<div id='vfVideo' class='vfVideoBg'><div class='vfVideoBorder'><a href='javascript:closeVFVideo();' title='schliessen'><img class='schliessen' src='/wLayout/design/img/schliessen.jpg' /></a><div class='vfBorderInner'><p id='JWVideo'>Please install the Flash Plugin</p></div></div></div>";
	
	var flashvars = {
		file:path,
		autostart:auto
	};
	var params = {
		allowfullscreen:fullscreen,
		allowscriptaccess:"always"
	};
	var attributes = {
		id:"player2",
		name:"player2"
	};
	swfobject.embedSWF("/wLayout/structure/player.swf","JWVideo",width,height,"9.0.115","false",flashvars, params, attributes);
}

function closeVFVideo() {
	var container = document.getElementById("VidCon");
	container.style.display = 'none';
	container.innerHTML = '';
}
