

function load_popup(sType)
{
    if(!sType){sType = "";}
    
    var popUp_url;
    var popUp_top;
    var popUp_left;
    var popUp_width;
    var popUp_height;
    
    
    switch(sType)
    {
        case "datenschutz" :
	jQuery.fancybox(
		'<iframe src="/content/datenschutzbestimmungen.html" border=0 scrolling="yes" FRAMEBORDER="0" width=500 height=500 style="overflow:scroll"></iframe>',
		{
        		'autoDimensions'	: false,
			'width'         		: 500,
			'height'        		: '400',
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'scrolling'			: 'no'
		}
	);
            break;
            
        case "kat_lgn" :
	jQuery.fancybox(
		'<iframe src="/content/downloadInformation.html" border=0 scrolling="no" FRAMEBORDER="0" height=400 style="overflow:hide"></iframe>',
		{
        		'autoDimensions'	: false,
			'width'         		: 300,
			'height'        		: '400',
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'scrolling'			: 'no'
		}
	);
            break;
            
        default:
            alert("Das angeforderte Pop-Up existiert nicht.");
            return;
    }
    
    
    //window.open(popUp_url, sType, "status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=0,scrollbars=1,height=" + popUp_height + "px,width=" + popUp_width + "px,top=" + popUp_top + "px,left=" + popUp_left + "px");
    
}

jQuery.noConflict();

