function ajax_popup(url, w, h, scroll) {
	jQuery('#ajaxpopup').remove();
	jQuery('body').append('<div id="ajaxpopup" />');
	jQuery('#ajaxpopup').css('display','none')
						.append('<iframe id="popupframe" name="popupframe" src="' + url + '?type=1167" border="0" scrolling="' + scroll + '" frameborder="0" marginwidth="0" marginheight="0" width="100%" height="' + h + '" />');
	jQuery('#ajaxpopup').css({
		'position'	: 'absolute',
		'top'		: 0,
		'left'		: 0,
		'z-index'	: 9999,
		'width' 	: w+'px',
		'height'	: h+'px',
		'border'	: '3px solid orange',
		'background': 'white'
	});
	jQuery('#ajaxpopup').css({
		'top'	: jQuery(window).height()/2 - h/2 - 30 + 'px',
		'left'	: jQuery(window).width()/2 - w/2 + 'px'
	});
	jQuery('#ajaxpopup').fadeIn('slow');
	
	jQuery('#ajaxpopup').append('<div class="close" />');
	jQuery('#ajaxpopup .close').text('X')
							   .css({
		'position'	: 'absolute',
		'top'	: '-0',
		'right'	: '-0',
		'width'		: '18px',
		'height'	: '18px',
		'background': 'orange',
		'border'	: '1px solid white',
		'color'		: '#fff',
		'font-size'	: '14px',
		'cursor'	: 'pointer'
	})
								.click(
									function(){
										jQuery('#ajaxpopup').fadeOut('slow').remove();
									}
	);
	
}


jQuery(document).ready(function() {

	//ajax_popup('http://www.rauch.cc/at/kontakt-jobs/newsletteranmeldung/',360,325,'no');
	
	jQuery('#nlanmeldung>a.ajax').bind(
		'click',
		function() {
			ajax_popup(jQuery(this).attr('href'),360,325,'no');
			return false;
		}
	);
	
});
