/*******************************************************************************
*
*   Anpassung IFrame
*
*   Glaswald Informatik GmbH
*   Oliver Prudlik
*   2009-07-14
*
*******************************************************************************/ 
function setIframeSize(){
	var xPos = 287;
	var yPos = 110;
	var site = document.body;
	var iframe = document.getElementById("iframe");
	var content_iframe = document.getElementById("content_iframe");	
	var divIframeHeight = parseInt(site.offsetHeight);
	var divIframeWidth = parseInt(site.offsetWidth);
	
	content_iframe.style.height = (divIframeHeight - yPos) +"px";
	content_iframe.style.width = (divIframeWidth - xPos) +"px";
	
	iframe.style.height = (divIframeHeight - yPos) +"px";
	iframe.style.width = (divIframeWidth - xPos) +"px";
}
