function ApzFrameLoad() {

}

/* // Does not work since it doesn't let you access frame content that is not your own.
function ApzResizeFrame() {
	var heightFudge = 20;
	var widthFudge = 5;
	var currentHeight = document.getElementById('ApzDemoiFrameID').height;
	var currentWidth = document.getElementById('ApzDemoiFrameID').width;
	var iframeHeight = window.frames.ApzDemoiFrame.document.body.scrollHeight + heightFudge;
	var iframeWidth = window.frames.ApzDemoiFrame.document.body.scrollWidth + widthFudge;
	if(iframeHeight > currentHeight) {
		document.getElementById('ApzDemoiFrameID').height = iframeHeight;
	}
	if(iframeWidth > currentWidth) {
		document.getElementById('ApzDemoiFrameID').width = iframeWidth;
	}
}
*/

function ApzPoweredByLoad() {

}