window.addEvent('load', function(){
	if ($('add_stuff_here'))
	{
		var myBanner = new Element('div', {
			'id': 'bannerPortiDeschise',
			'class': 'myClass',
			'html': 'loading...',
			'styles': {
				'position': 'absolute',
				'left': '50%',
				'top': '50%',
				'width': '640px',
				'height': '500px',
				'margin-left': '-320px',
				'margin-top': '-250px',
				'display': 'block',
				'border': '1px solid red',
				'background-color': 'white',
				'z-index': '1000'
			},
			'events': {
				'click': function(){
//					window.location='http://www.ats.ro/promotions.php';
//					myBanner.dispose();
					},
				'mouseover': function(){
//					alert('mouseovered');
				}
			}
		});

		reqUri = 'banners/bannerPortiDeschise.php';
		myBanner.set('load', {evalScripts: true});
		myBanner.load(reqUri);

		myBanner.inject($('add_stuff_here'), 'before');
	}
});

function close_banner(){
	$("bannerPortiDeschise").setStyle("display", "none");
}