/**
* @author yoshiken@compass.sh
*
*
*/

function newHeight(h) {
	if(document.all && !document.getElementById) {
 		document.all['swfArea'].style.pixelHeight = h;
	}else{
		document.getElementById('swfArea').style.height = h;
	}
}
