function flashControl(SRC,WIDTH,HEIGHT,FLASHVARS,WMODE,BGCOLOR) {

	while ( FLASHVARS.search(' ') != -1 ) {
		FLASHVARS = FLASHVARS.replace(' ', '%20');
	}

	document.write('<object type="application/x-shockwave-flash" data=' + SRC+ ' width=' + WIDTH + ' height=' + HEIGHT + '>');
	document.write('<!--[if IE]><param name="movie" value=' + SRC+ '>< ![endif]-->');

	if ( FLASHVARS ) { document.write('<param name="flashvars" value=' + FLASHVARS + '>'); }
	if ( WMODE ) { document.write('<param name="wmode" value=' + WMODE + '>'); }
	if ( BGCOLOR ) { document.write('<param name="bgcolor" value=' + BGCOLOR + '>'); }

    document.write('<param name="quality" value="high">');
	document.write('<\/object>');
}

function queryString() {
	
	 var myQueryString=document.location.search;
	
	 if (myQueryString[0]='?') {
		 
		myQueryString=myQueryString.substr(1, myQueryString.length-1);
	 }
	 
switch(myQueryString){
		 
		 case "": 
		 return myQueryString;
		 break;
		 
		 case "lang=hu": 
		 return myQueryString;
		 break;
		 
		 case "lang=en": 
		 return myQueryString;
		 break;
		 
		 case "lang=de": 
		 return myQueryString;
		 break;
		 
		 default:
		 return "nemenj";

 	}

}
