function setIFrameDimensions() {
	var pageHeight = window.innerHeight ? window.innerHeight : $(window).height();
	//var pageWidth = window.innerWidth ? window.innerWidth : $(window).width();
	
	var iframeHeight = pageHeight;
	//var iframeWidth = pageWidth;

	//set the initial dimensions of the iframe on page load
	$("body > iframe").attr("height", iframeHeight - 4);
	//$("body > iframe").attr("width", iframeWidth);

	//set the initial width of the iframe and header

	//event listener to resize iframe on window resize
	$(window).resize(function() {
		var pageHeight = window.innerHeight ? window.innerHeight : $(window).height();
		var iframeHeight = pageHeight;
		
		//var pageWidth = window.innerWidth ? window.innerWidth : $(window).width();
		//var iframeWidth = pageWidth;
		
		$("body > iframe").attr("height", iframeHeight - 4);
		//$("body > iframe").attr("width", iframeWidth);
	});
}


