<!--

popup_index=false;
popup_vita=false;
popup_links=false;
popup_film=false;

function closepopup_index(){
  if (popup_index) popup_index.close();
  popup_index=false;
}

function closepopup_vita(){
  if (popup_vita) popup_vita.close();
  popup_vita=false;
}

function closepopup_links(){
  if (popup_links) popup_links.close();
  popup_links=false;
}

function closepopup_film(){
  if (popup_film) popup_film.close();
  popup_film=false;
}

function openpopup_index(seite, width, height){

	style = '"titlebar=no,toolbar=no,status=no,resizable=no,scrollbars=no,menubar=no,height=' + height + ',width=' + width + '"';
	
	popup_index = window.open(seite, "popup_index", style);
	popup_index.resizeTo(width,height);
	popup_index.focus();
}

function openpopup_vita(seite, width, height){

	style = '"titlebar=no,toolbar=no,status=no,resizable=yes,scrollbars=yes,menubar=no,height=' + height + ',width=' + width + '"';
	
	popup_vita = window.open(seite, "popup_vita" , style);
	popup_vita.resizeTo(width,height);
	popup_vita.focus();
}

function openpopup_links(seite, width, height){

	style = '"titlebar=no,toolbar=no,status=no,resizable=yes,scrollbars=yes,menubar=no,height=' + height + ',width=' + width + '"';
	
	popup_links = window.open(seite, "popup_links" , style);
/*	popup_links.resizeTo(width,height); */
	popup_links.focus();
}

function openpopup_film(seite, width, height){

	style = '"titlebar=no,toolbar=no,status=no,resizable=no,scrollbars=no,menubar=no,height=' + height + ',width=' + width + '"';
	
	popup_film = window.open(seite, "popup_film" , style);
	popup_film.resizeTo(width,height);
	popup_film.focus();
}

//-->

