//
window.addEvent('domready', function() {
	var popup = aktionspopup();
	$('Inhalt').setStyle('position','relative');
	$('Inhalt').adopt(popup);
	popup.set('tween', {duration: 500});
	popup.tween('opacity',1);
});

function aktionspopup()
{
	var bild = 'fileadmin/js/aktionpopup/'+aktionpopup_bild;
	//var bild = 'fileadmin/js/aktionpopup/gutschein_2010_1.png';
	var close = 'fileadmin/js/aktionpopup/schliesen.png';
	if( Browser.Engine.trident && Browser.Engine.version < 5 ){
		//bild = 'fileadmin/js/aktionpopup/gutschein.gif';
		bild = 'fileadmin/js/aktionpopup/'+aktionpopup_bild_gif;
		close = 'fileadmin/js/aktionpopup/schliesen.gif';
	}
	
	var popup = new Element('div', {
								'id': 'aktionspopup', 
								'styles': { 
									'position':'absolute',
									'top':'70px',
									'right':'-40px',
									'opacity':0, 
									'cursor':'pointer' 
								}
							});
	popup.adopt( new Element('img', {
							 	'src': bild , 
								'border': '0', 
								'events':{ 
									'click': function(){
										//window.location.href = 'http://www.juffing.at/de/preise/gutscheine/';
										//window.location.href = 'http://www.juffing.at/de/preise/aktuelle-angebote/';
										window.location.href = aktionpopup_location;

									} 
								} 
							}));
	popup.adopt( new Element('img', { 
							 	'src': close , 
								'border': '0',
								'styles': {
									'position':'absolute', 
									'bottom':'-20px', 
									'left':'0px'
								}, 
								'events': { 
									'click': function(){
										popup.set('tween', {duration: 500});
										popup.tween('opacity',0);
									} 
								} 
							}));
	return popup;
}
