// Popup für Stelleninserat

var win = null;

function popupInserat()
{
	if (!win || win.closed)
	{
		var winArg = "width=880";
		winArg += ",height=820";
		winArg += ",left=0";
		winArg += ",screenx=0";
		winArg += ",dependent=yes";
		winArg += ",resizable=yes";
		winArg += ",scrollbars=no";
		win = window.open("../stelleninserat.html", "OffeneStelle", winArg);
	}
	else if (win.focus) win.focus();
}