function openPopup(url, title, width, height){

	var randomnumber = Math.floor(Math.random()*11);
	
	window.open(url, title + randomnumber , "status=1,width="+ width +",height="+ height +",scrollbars=0,screenx=20,screeny=20,dependent");
}

function openScrollingPopup(url, title, width, height)
{
	var randomnumber = Math.floor(Math.random()*11);
	
	window.open(url, title + randomnumber , "status=1,width="+ width +",height="+ height +",scrollbars=1,screenx=20,screeny=20,dependent");

}

function openScrollingPopup1(url, title, width, height)
{
	var randomnumber = Math.floor(Math.random()*11);
	
	window.open(url, title + randomnumber , "status=1,width="+ width +",height="+ height +",scrollbars=1,screenx=20,screeny=20,dependent");
}


function openScrollingPopup2(url, title, width, height)
{

	var randomnumber = Math.floor(Math.random()*11);
	
	window.open(url, title + randomnumber , "status=1,width="+ width +",height="+ height +",scrollbars=1,screenx=50,screeny=50,dependent");

	self.name = "Ziel";

}


function lade(seite)
{
   if (window.opener!=null)
   {
      window.opener.parent.location.href = seite;
      
   }   
}

