// JavaScript Document


window.onload = function() {
	
}


// Logo = Homebutton für das Iframe
function btnHome() {
	document.getElementById('myframe').src = 'home.html';
}


// Iframe an die Länge des Inhalts anpassen
function resizeIframe(obj) {
	var docHeight = myframe.document.body.scrollHeight;
	obj.style.height = docHeight + 'px';
} 


// Popup universell
function popupWin(url, name, eigenschaften) {
	var win = window.open(url, name, eigenschaften); 
	win.focus();
} 

