// JavaScript Document

// IFRAME FUNCTIONS....

var skip_oFrame;

function skip_calcHeight() {
//alert (extraPad);
  //find the height of the internal page
  var the_height=skip_oFrame.contentWindow.document.body.scrollHeight;
  //change the height of the iframe
	if (skip_oFrame.height != the_height)  skip_oFrame.height=the_height+20;
}

function skip_iFrameLoad(whichFrame) {
	// called from the onload of an iframe
	skip_oFrame = whichFrame;
	var t=setInterval ( "skip_calcHeight()", 3000 );
	//console.log('frame(set)' + skip_oFrame);
}

