var getFFVersion=navigator.userAgent.substring(navigator.userAgent.indexOf("Firefox")).split("/")[1]
var FFextraHeight=parseFloat(getFFVersion)>=0.1? 16 : 0 //extra height in px to add to iframe in FireFox 1.0+ browsers

function resizeIframe(frame,hash)
{
	hash = hash.replace('#','');
	theight = parseInt(hash);
	
	if (frame && !window.opera)
	{

		frame.height = theight; 
	//DEBUG alert("Setting the height of "+frame+ " to "+frame.height); 
	}
}
