function showRecData(data){ 
	var x,y;
	if (self.innerHeight)
	 // alle auser IE
	{
	 x = self.innerWidth;
	 y = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientHeight)
	 // IE 6
	{
	 x = document.documentElement.clientWidth;
	 y = document.documentElement.clientHeight;
	}
	else if (document.body) // andere IE
	{
	 x = document.body.clientWidth;
	 y = document.body.clientHeight;
	}
	
	$("#recommendation_popup").html(data);
	var completeHeight= 1200;
	var height = $("#recommendation_popup").height();
	if( y > height)	{
		completeHeight=y;
		
	}
	else{
		completeHeight=height;
	}
	completeHeight=1800;
	
	$("#abdunkler").css("width","100%");
	$("#abdunkler").css("height",completeHeight);
	$("#abdunkler").show();		
					
	$("#recommendation_popup").fadeIn();
			
}    


function loadRecData(url){
	$.get(url,null, showRecData);
}
