/**
 * morita_utility
 *
 * @author		: gd incorporated.
 * @version	: 1.0.01
 */

function closeFlashContents()
{
	var l_flashContent = document.getElementById("flashcontent");
	l_flashContent.innerHTML = '';
	l_flashContent.style.display = "none";
	document.getElementById("CT").style.display = "block";
	if( gd.client.isMSIE6 )
	{
		document.body.style.height = '';
	}
	document.body.style.Height = '100%';
	document.body.style.overflow='visible';
	gd.removeMouseWheelEvent();
	return "onClosed";
}
function openFlashContent()
{
	document.getElementById("CT").style.display = "none";
	var l_flashContent = document.getElementById("flashcontent");
	l_flashContent.style.display = 'block';
	
	if( gd.client.isMSIE6 )
	{
		//document.body.style.height = gd.getInnerHeight() + 'px';
		window.scroll(0,0);
	}

	//vista IE7
	ua = navigator.userAgent;
	if (ua.match(/Win(dows )?NT 6\.0/) && navigator.appName == "Microsoft Internet Explorer" ) {

	}
	document.body.style.overflow='hidden';
	// write in HTML
	createFlash();

}

