// PopUp NEUWERK

function popup(URL,Name,Breite,Hoehe) {
	var fenster = URL;
	var name = Name;
	var breite = Breite;
	var hoehe = Hoehe;
	var von_links = screen.width/2-breite/2;
	var von_oben = screen.height/2-hoehe/2;
	var auf = null;
	auf =  window.open(fenster,name,'width='+breite+',height='+hoehe+',resizable=no,status=no,scrollbars=no,menubar=no,screenX='+von_links+',screenY='+von_oben+',left='+von_links+',top='+von_oben+'')
}

// Dynamic Iframe loader
function loadIframe(theURL) {
	document.getElementById("mainContent").src=theURL;
}

// resizes Iframe according to content
function resizeMe(obj) { 
docHeight = mainContent.document.body.scrollHeight
 obj.style.height = docHeight + 'px'
 } 