/* ---------------------------------------------
	
	created: 2009-05-15;
	last-modified: 2009-05-27;

--------------------------------------------- */



/* --------------------------------
	背景swfの高さを指定
-------------------------------- */

function gethight(){
	var h = Math.max( document.body.clientHeight , document.body.scrollHeight );
	h = Math.max( h , document.documentElement.scrollHeight );
	h = Math.max( h , document.documentElement.clientHeight );
	if( h <= 1600 ){
	document.getElementById('bgSwf').style.cssText = 'height:'+h+'px';
	} else {
	document.getElementById('bgSwf').style.cssText = 'height:1600px';
	}
}



/* --------------------------------
	背景swfの再生／停止
-------------------------------- */

function thisMovie(movieName) {
    if (navigator.appName.indexOf("Microsoft") != -1) {
        return window[movieName];
    }
    else {
        return document[movieName];
    }
}

function callStopTypo (){
	thisMovie("back").callStopTypo();
}

function callPlayTypo (){
	thisMovie("back").callPlayTypo();
}