// JavaScript Document

//高さの制御
/*
function setDivHeight() {
	if (parseInt(navigator.appVersion)>3) {
		if (window.innerHeight) {
			h = window.innerHeight;
		}else if (document.documentElement && document.documentElement.clientHeight) { 
			h = document.documentElement.clientHeight;
		}else if (document.body) { // other Explorers
			h = document.body.clientHeight;
		}
		//document.getElementById("layer2").style.height= h + "px";
		document.getElementById("container").style.height= h + "px";
		document.getElementById("myiframe").height= h + "px";
		
		//document.getElementById("flashContainer").style="position:absolute;top:15;left:18;";
	}
}
*/
function divResize(w,h) {
	document.getElementById('flashContainer').style.width = w+'px';
    document.getElementById('flashContainer').style.height = h+'px';
	document.getElementById('flashcontent').style.width = w+'px';
    document.getElementById('flashcontent').style.height = h+'px';
}
//blind voice.phpのmore用
function hideBlind(){
	$("#moreBtn2").hide();
	$("#moreBtn").show();
	var ef = "blind";
	$("#tweet2").slideUp("slow");
}
function showBlind(){
	$("#moreBtn2").show();
	$("#moreBtn").hide();
	var ef = "blind";
	/*$("#tweet2").slideDown("slow");*/
	/*$("#tweet2").show();*/
	if(navigator.userAgent.indexOf("MSIE") != -1){
		$('#tweet2').show();
	}else{
		$("#tweet2").slideDown("slow");
	}
}
