function winbird(obj) {
    document.getElementById('birdvideo').innerHTML = '<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" name="mediaplayer1" showstatusbar="true" enablecontextmenu="false" autostart="true" width="420" height="320" loop="false" src="birdvideo.wmv" />';
}

function macbird(obj) {
    document.getElementById('birdvideo').innerHTML = '<p>LOADING...</p><p>This video can take up to 2 minutes to load. Thank you for your patience.</p><object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="160" height="144" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="SRC" value="birdvideo.mov"><param name="AUTOPLAY" value="true"><param name="CONTROLLER" value="false"><param name="Loop" value="true"><param name="Target" value="_blank"><embed src="birdvideo.mov" width="160" height="144" autoplay="true" controller="false" pluginspage="http://www.apple.com/quicktime/download/"></embed></object>';
}

function otherbird(obj) {
    document.getElementById('birdvideo').innerHTML = '<p>Please choose one of the following formats:</p><p><a href="#" onclick="winbird()">View Windows Media Player Version</a></p><p><a href="#" onclick="macbird()">View Quicktime Version</a></p>';
}

function load_video() {
	agent = navigator.userAgent.toLowerCase();

	if((agent.search(/windows/)!=-1) || (agent.search(/win9[0-9]/)!=-1)) {
		winbird();
	} else if((agent.search(/mac\sos\sx/)!=-1) || (agent.search(/macintosh/)!=-1) || (agent.search(/mac\x5fpowerpc/)!=-1)) {
		macbird();
	} else {
		otherbird();
	}
}
