/* some windows for some reasons ;-) */

function openMailForm () {
	openWindow("ak_templates/ak_email.html","Mailer", 450, 500);
}

function openGuestBook () {
	<!--openWindow("http://cgi.kaupass.de/CGI/guestbook","Guestbook", 600, 600);-->
        openWindow("http://www.kaupass.de/stdcgi/guestbook.php","Guestbook", 600, 600)
}

function openWindow(path, name, w, h) {
	Fenster = window.open( path, name, "menubar=no, status=no, toolbar=no, dependent=yes, width=" + w + ",height=" + h + ",left=0,top=0");
	Fenster.moveTo((screen.width / 2) - (w / 2), (screen.height / 2) - (h / 2 ));
	Fenster.focus();
}
