<!--                              
function open_search()
{
	var url = "search.php";
	openPopupWin(url, 430, 450);
}

function open_fragebogen()
{
	var url = "fragebogen.php";
	openPopupWin(url, 630, 450);
}

function open_impressum()
{
	var url = "impressum.php";
	openPopupWin(url, 570, 450);
}

function open_disclaimer()
{
	var url = "disclaimer.php";
	openPopupWin(url, 570, 350);
}

function open_sach_search()
{
	var url = "sachverstaendigensuche.php";
	openPopupWinNoScrollbars(url, 810, 550);
}

function openPopupWin(url, width, height)
{
        var name = "new" + Math.round(Math.random() * 1000);
        var my_x = (screen.availWidth - width)/2;
        var my_y = (screen.availHeight - height)/2;
        var fenster = "width=" + width + ",height=" + height + ",left="+my_x+", top="+my_y+",resizable=no,scrollbars=yes,toolbar=no,status=no,directories=no,menubar=no,location=no";

        w = open(url, name, fenster);

	w.focus();        
}

function openPopupWinNoScrollbars(url, width, height)
{
        var name = "new" + Math.round(Math.random() * 1000);
        var my_x = (screen.availWidth - width)/2;
        var my_y = (screen.availHeight - height)/2;
        var fenster = "width=" + width + ",height=" + height + ",left="+my_x+", top="+my_y+",resizable=no,scrollbars=no,toolbar=no,status=no,directories=no,menubar=no,location=no";

        w = open(url, name, fenster);

	w.focus();        
}
//-->

