// by Paul@YellowPencil.com and Scott@YellowPencil.com
// feel free to delete all comments except for the above credit

function OpenWindow(strZiel, strName, intWidth, intHeight)
{
  Test = window.open(strZiel, strName, 'width='+intWidth+',height='+intHeight+',scrollbars=yes,resizable,menubar=yes');
  if (document.all)
  {
	var ClickX = window.event.x;
	var ClickY = window.event.y;
	if (navigator.appVersion.indexOf("MSIE 5")>0 )
	{
	  Test.moveTo(ClickX+window.screenLeft+5, ClickY+window.screenTop-50);
	}
  }
}

  function del(url,name)
  {
    temp = confirm("Folgenden Beitrag löschen? \"" + name + "\"")
    if( temp!=0 )
    {
      location = url;
    }
  }


