﻿

//
// FlashPlaye7～
//
function setSwf(mode){


	var h = 1200;

	var s;
	s  = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="100%" height="' + h + '">';
	s += '<param name="movie" value="http://www.group-rough.net/museum/swf/water.swf" />';
	s += '<param name="FlashVars" value="mode='+mode+'">';
	s += '<param name="BGColor" value="#d0d6d6">';
	s += '<embed src="http://www.group-rough.net/museum/swf/water.swf" FlashVars="mode='+mode+'" width="100%" height="' + h + '" name="water" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>';
	s += '</object>';
    document.write(s);
}

function getBodyHeight()
{
	var h;
	if(document.all) h = document.body.scrollHeight;
	else if(document.getElementById) h =document.height;
	return h;
}

function setMusicPlayer(sound,swfid){
	if(!swfid) swfid = sound;
	var s;
	s  = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="220" height="20" id="'+swfid+'">';
	s += '<param name="movie" value="swf/musicplayer.swf?src='+sound+'" />';
	s += '<param name="wmode" value="transparent" />';
	s += '<embed src="swf/musicplayer.swf?src='+sound+'" wmode="transparent" width="220" height="20" name="sample_player" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>';
	s += '</object>';
    document.write(s);
}