﻿// JavaScript Document
function fensterschliessen()
{
	window.close();
}
function popup(myUrl, name) {
	var h=550; var w=510;
	var leftpos = (screen.width - w) / 2;
	var toppos = (screen.height - h) / 2;
	winconfig = 'height='+h+',width='+w+',left='+leftpos+',top='+toppos+', scrollbars=yes, resizable=no, status=no, toolbar=no';
	win = window.open(myUrl, name, winconfig);
	if (parseInt(navigator.appVersion) >= 4)
		win.window.focus();
}
