//Querystring
function QS(A){this.params={};if(A==null){A=location.search.substring(1,location.search.length)}if(A.length==0){return }A=A.replace(/\+/g," ");var C=A.split("&");for(var D=0;D<C.length;D++){var F=C[D].split("=");var B=decodeURIComponent(F[0]);var E=(F.length==2)?decodeURIComponent(F[1]):B;this.params[B]=E}}QS.prototype.get=function(A,B){var C=this.params[A];return(C!=null)?C:B};QS.prototype.contains=function(A){var B=this.params[A];return(B!=null)};

function Gewinnspiel1Submit(e){
	e.stop();
	this.set('send', 
		{
		url: 'gewinnspiel1.asp', 
		onComplete: function(response) {
			$('gewinnspiel1').set('html', response);
			$('gewinnspiel1');
			$('gewinnspiel1frm').addEvent('submit', Gewinnspiel1Submit)
		}
	});
	this.send();
}


window.addEvent('domready', function(){
	if($('gewinnspiel1')){
		var gs1aj = new Request({
			url: 'gewinnspiel1.asp', 
			encoding:'ISO-8859-1',
			onSuccess : function(a, b){
				$('gewinnspiel1').set('html', a);
				$('gewinnspiel1');
				$('gewinnspiel1frm').addEvent('submit', Gewinnspiel1Submit);
			}
		}).send('');
	}
	
	
	if ($('gsbutton')){
		var obj = new Swiff('../img/gsbutton.swf', {
			id: 'gsbuttonswf', width: 134, height: 104,
			params: { wmode: 'transparent' }
		});
		obj.inject($('gsbutton'));
	}
	
	
});