// JavaScript Document/*function calcHeight() {	if (document.body.scrollHeight!=undefined&&document.body.scrollHeight!=0) { // All But IE Mac		if (parent.document.getElementById('display').height!=0) {			the_height=0;			parent.document.getElementById('display').height=the_height;		}		var the_height=document.body.scrollHeight; 		window.alert('iFrame Height OTHER = ' + the_height ); //TESTING		parent.document.getElementById('display').height=the_height;			} else if(document.body.scrollHeight > document.body.offsetHeight) { // IE 6 Strict, Mozilla (not FF) & Safari			if (parent.document.getElementById('display').height!=0) {			the_height=0;			parent.document.getElementById('display').height=the_height;		}			var the_height=document.body.offsetHeight;		window.alert('iFrame Height IE6 = ' + the_height ); //TESTING		parent.document.getElementById('display').height=the_height; 	} else { //FIREFOX			if (parent.document.getElementById('display').style.height!=0) {			the_height=0;			parent.document.getElementById('display').style.height=the_height;		}			var the_height=window.innerHeight + window.scrollMaxY;		window.alert('iFrame Height FIREFOX = ' + the_height ); //TESTING		parent.document.getElementById('display').style.height=the_height+"px";	}	}*/function calcHeight() {//find the height of the internal pageif (document.body.scrollHeight==undefined||document.body.scrollHeight==0) {		if(window.innerHeight!=0 && window.scrollMaxY!=undefined) { //FIREFOX				if (parent.document.getElementById('display').style.height!=0) {			the_height=0;			parent.document.getElementById('display').style.height=the_height;		}			var the_height=window.innerHeight + window.scrollMaxY;		//window.alert('iFrame Height FIREFOX = ' + the_height ); //TESTING		parent.document.getElementById('display').style.height=the_height+"px";			} else { // IE				if (window.parent.document.getElementById('display').height!=0) {			the_height=0;			window.parent.document.getElementById('display').height=the_height;		}			var the_height=document.getElementById('pageWrap').scrollHeight + 284;		//window.alert('iFrame Height IE = ' + the_height); //TESTING		window.parent.document.getElementById('display').height=the_height;	}} else { 		if (parent.document.getElementById('display').height!=0) {		the_height=0;		parent.document.getElementById('display').height=the_height;	}		var the_height=document.body.scrollHeight; //IE & Safari	//window.alert('iFrame Height OTHER = ' + the_height ); //TESTING	parent.document.getElementById('display').height=the_height;}//change the height of the iframe//document.getElementById('display').height=the_height;//window.alert('iFrame Height = ' + the_height );}