/////////////////////////////////////////////////////////////

function showVidISDN(format)
{
	link="imagevideo.php?format=" + format + "&verbindung=isdn";
	
    scrollbars="no";
	resizable="no";
							
	var winH = (screen.width - 300) / 2;
	var winV = (screen.height - 220) / 2;
	fenster = 'height='+220+',width='+300+',top='+winV+',left='+winH+',scrollbars='+scroll+',resizable='+resizable;
    
    
   	honk = window.open(link, "detailbild", fenster);
   	honk.focus();
}

/////////////////////////////////////////////////////////////

function showVidDSL(format)
{
	link="imagevideo.php?format=" + format + "&verbindung=dsl";
	
    scrollbars="no";
	resizable="no";
							
	var winH = (screen.width - 400) / 2;
	var winV = (screen.height - 340) / 2;
	fenster = 'height='+340+',width='+400+',top='+winV+',left='+winH+',scrollbars='+scroll+',resizable='+resizable;
    
    
   	honk = window.open(link, "video_dsl", fenster);
   	honk.focus();
}

/////////////////////////////////////////////////////////////

function showVidDSLHigh(format)
{
	link="imagevideo.php?format=" + format + "&verbindung=dsl_high";
	
    scrollbars="no";
	resizable="no";
							
	var winH = (screen.width - 520) / 2;
	var winV = (screen.height - 420) / 2;
	fenster = 'height='+420+',width='+520+',top='+winV+',left='+winH+',scrollbars='+scroll+',resizable='+resizable;
    
    
   	honk = window.open(link, "video_dsl_high", fenster);
   	honk.focus();
}

/////////////////////////////////////////////////////////////

function popupPresseRegistrierung(format)
{
	link="presseregistrierung.php";
	
    scrollbars="yes";
	resizable="yes";
    var breite = 445;
    var hoehe  = 485;	
	var winH = (screen.width - breite) / 2;
	var winV = (screen.height - hoehe) / 2;
	fenster = 'height='+hoehe+',width='+breite+',top='+winV+',left='+winH+',scrollbars='+scrollbars+',resizable='+resizable;
    
    honk = window.open(link, "presse", fenster);
   	honk.focus();
}

/////////////////////////////////////////////////////////////

function popupPressePasswort()
{
	link="presseregistrierung.php?action=passwort";
	
    scrollbars="no";
	resizable="yes";
    var breite = 412;
    var hoehe  = 315;	
	var winH = (screen.width - breite) / 2;
	var winV = (screen.height - hoehe) / 2;
	fenster = 'height='+hoehe+',width='+breite+',top='+winV+',left='+winH+',scrollbars='+scrollbars+',resizable='+resizable;
    
    honk = window.open(link, "pressepasswort", fenster);
   	honk.focus();
}


/////////////////////////////////////////////////////////////

function popupMitgliederPasswort()
{
	link="mitgliederpasswort.php";
	
    scrollbars="no";
	resizable="yes";
    var breite = 412;
    var hoehe  = 315;	
	var winH = (screen.width - breite) / 2;
	var winV = (screen.height - hoehe) / 2;
	fenster = 'height='+hoehe+',width='+breite+',top='+winV+',left='+winH+',scrollbars='+scrollbars+',resizable='+resizable;
    
    honk = window.open(link, "passwort", fenster);
   	honk.focus();
}

/////////////////////////////////////////////////////////////