/****** POPUP
******************************************************************************/

function popupWin(Link,breite,hoehe){
	var pop_win = window.open(Link ,"pop_win","toolbar=no,location=no,menubar=no,status=no,scrollbars=no,resizable=no,width=" + breite + ",height=" + hoehe + ",top=" + '80px' );
	pop_win.focus();
}
function popupWin2(Link,breite,hoehe){
	var pop_win = window.open(Link ,"pop_win","toolbar=no,location=no,menubar=no,status=no,scrollbars=yes,resizable=no,width=" + breite + ",height=" + hoehe + ",top=" + '80px' );
	pop_win.focus();
}

