<!--
// info
function showinfo(eid) {
	e=document.getElementById(eid).style;
	if (e.display!='') {
		e.display='';
		return true;
	}
}
function openWin( windowURL, windowName, windowFeatures ) {
	return window.open( windowURL, windowName, windowFeatures ) ; 
}
function searchvalue (searchvalue) {
	s = window.location.search.substring(1).split('&');
	var c = {};
	for(var i  = 0; i < s.length; i++){
		var parts = s[i].split('=');
		// c[unescape(parts[0])] = unescape(parts[1]);
		if (searchvalue == unescape(parts[0])){
			return unescape(parts[1]);
		}
	}
	return 0;
}
function showVr (){
	isfile = (searchvalue('file'));
	gb = new Swiff('upload/flash/rundgang.swf',{
		'id': 'file',
		'width': 480,
		'height': 300,
		'container': 'key',
		params: {
	        wmode: 'opaque',
	        bgcolor: '#ffffff',
			allowFullScreen: true
	    },
	    vars: {
			file: isfile
	    }
	});
}
// -->
