function Popup(url, name) {
	if ( name == null ) name = 'Popup';
	var win = open( url, name, "resizable=no,scrollbars=0,menubar=0,status=0" );
	win.focus();
}

function popup2(URL, Breite, Hoehe) {
   popUpWindow = window.open(URL, "IVAM", "toolbar=no,location=no,status=no,scrollbars=yes,   menubar=no,resizable=no,top=0,left=0,width=650,height=600");
}
   
function Fit(id) {
	if ( opener != null && document.getElementById ) {
		element = document.getElementById(id);
		new_w = element.offsetWidth;
		new_h = element.offsetHeight;
	
		if ( window.innerWidth ) {
			act_w = window.innerWidth;
			act_h = window.innerHeight;
		}
		else {
			act_w = document.body.clientWidth;
			act_h = document.body.clientHeight;
		}

		window.resizeBy( new_w - act_w, new_h - act_h );
		w = new_w;
		h = new_h;
	}
}
