function setFlashHeight(divid, newH){
	var m1 = document.getElementById(divid);
	var start_height;
	if (m1.currentStyle ) {
		start_height = parseInt(m1.currentStyle.height);
	} else if ( document.defaultView.getComputedStyle ){
		start_height = parseInt(document.defaultView.getComputedStyle(m1,'').height);
	}
	//document.getElementById(divid).style.height = newH+"px";
	t1 = new Tween(document.getElementById(divid).style,'height',Tween.regularEaseIn,start_height,newH,0.5,'px');
	t1.start();
	t2 = new Tween(document.getElementById("home_proto").style,'height',Tween.regularEaseIn,start_height,newH,0.5,'px');
	t2.start();
}
