﻿function OpenTeaser(url)
{
	var win = window.open(url,'Vorschau','top=100,left=200,toolbar=no,status=no,menubar=no,resizable=no,scrollbars=yes,width=700, height=600');
	win.focus();
}
			
function OpenWindow(url,width,height,lposition,tposition,title)
{
	var win = window.open(url,'Vorschau','top=' + tposition + ',left=' + lposition + ',toolbar=no,status=no,menubar=no,resizable=no,scrollbars=yes,width=' + width + ', height=' + height);
	win.focus();
}			

function OpenWindowDown(url,width,height,lposition,tposition,title)
{
	var win = window.open(url,'Vorschau','top=' + tposition + ',left=' + lposition + ',toolbar=no,status=no,menubar=no,resizable=no,scrollbars=yes,width=' + width + ', height=' + height);
	window.focus();
}	

function LoeschAbfrage( aurl, atext ) {
	if (confirm('Möchten Sie den Eintrag "' + atext + '" wirklich löschen?')==true)
	{
		location.href= aurl;
	}		
}
