var cFrame = null
var hOffset = 120;
if (is_nav)	hOffset = hOffset + 60;	//extra height in px to add to iframe in FireFox 1.0+ browsers		// Modified to include all NN
if (is_nav7_1down) hOffset = 0;
if (is_safari) hOffset = 0;

function frameUpdateSize(wID,wHeight,wWidth) {	
//	alert(wHeight + " - " + wWidth);
	cFrame = document.getElementById(wID);
	if (cFrame == null) return;
	wHeight = parseInt(wHeight)
	wWidth = parseInt(wWidth)

	objToResize = (cFrame.style) ? cFrame.style : cFrame;
	if (objToResize) 
		objToResize.height = wHeight + hOffset + "px";
}
