// JavaScript Document
var popUpWin=0;
function popUpWindow(URLStr)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width=200,height=200,left=300, top=200');
}

function aktualisiere(id,name,rubrik,product){
	popUpWindow("typo3conf/ext/hht_seite_merken/pi1/loesche_seite.php?rubrik="+rubrik+"&name="+name+"&id="+id+"&product="+product,"200","200","200","200");
}
