// JavaScript Document
window.onload = function()
{
document.getElementById("start").onclick = Start;
document.getElementById("stop").onclick = Stop;
	Stop();
}
function Start()
{
	if (navigator.appName!="Microsoft Internet Explorer")
	window.FlashFan.Play()
	else
	document.FlashFan.Play()
}

function Stop()
{
	if (navigator.appName!="Microsoft Internet Explorer")
	window.FlashFan.StopPlay()
	else
	document.FlashFan.StopPlay()
}