
function getById(id){

	if (document.layers){
		//Netscape 4 specific code	
		return eval('document.' + id);
	}
	if (document.getElementById){
		//Netscape 6 specific code
		return eval('document.getElementById("' + id + '")');
	}
	if (document.all){
		//IE4+ specific code
		return eval('document.all.' + id + '');
	}

}

var minimumHeight = 750;

function resizeflash(m)
{
	if(m) minimumHeight = m;

	var flashID	= "NATM";
	
	if(document.all){   
		windowHeight = document.body.clientHeight;
	}else{     
		windowHeight = innerHeight;
	}

	// alert(getById(flashID))

	oFlash = getById(flashID);

	//alert(winW + " - " + oFlash);
	
	// Sets the height of the OBJECT/EMBED tag 
	oFlash.height = ( windowHeight > minimumHeight ) ? windowHeight : minimumHeight;
	
	//alert(oFlash.height)
}

