function OpenPopUpBroschueren(url)
{
	OpenPopUp(url, 800, 600, true);
}

function OpenPopUp(url, width, height, resizable)
{
	var maximize = false;
	var path = "PopUpGeneric.aspx";
	
	if(width == null)
	{
		width = 800;
	}
	
	if(height == null)
	{
		height = 600;
	}
	
	if(!resizable)
	{
		resizable = "no";
	}
	else
	{
		resizable = "yes";
	}
		
	
	if(width > window.screen.availWidth || height > window.screen.availHeight)
	{
		width = window.screen.availWidth;
		height = window.screen.availHeight;
		maximize = true;
	}
	
	if(url != null && url != "")
	{
		path += "?content=" + url;
	}
	
	var win = window.open(path, "PopUp", "width=" + width + ", height=" + height + ", status=no, toolbar=no, resizable=" + resizable );
	
	if(maximize)
	{
		win.moveTo(0, 0);
		win.resizeTo(width, height);
	}
	
	win.focus();
}

