// --------------------------------------------------------
// öffnet den Link in einem Pop-Up
// --------------------------------------------------------

function openPopup(url_, width_, height_) {
	if(!width_ || width_ == 0)
	{
		width_ = 546;
	}
	if(!height_ || height_ == 0)
	{
		height_ = 639;
	}
	popup = window.open(url_, "openPopup", 'left=100,top=50,width='+width_+',height='+height_);
	//toolbar=0,scrollbars=1,location=0,directories=0,status=0,menubar=0,resizable=0,copyhistory=1,
	popup.focus();
}
// --------------------------------------------------------

function closeWindow() {
	window.close();
}
