function getRefToDiv(divID,oDoc) {
	if( document.getElementById ) { return document.getElementById(divID); }
	if( document.all ) { return document.all[divID]; }
	if( !oDoc ) { oDoc = document; }
	if( document.layers ) {
		if( oDoc.layers[divID] ) {
			return oDoc.layers[divID];
		} else {
			for( var x = 0, y; !y && x < oDoc.layers.length; x++ ) {
				y = getRefToDiv(divID,oDoc.layers[x].document);
			}
			return y;
		}
	}
	return false;
}

function writeContent(id, content)
{
	var myReference = getRefToDiv(id);
	if( !myReference ) { window.alert('Nothing works in this browser'); return; }
if( typeof( myReference.innerHTML ) != 'undefined' ) {
  //used by all current browsers
  myReference.innerHTML = content;
} else if( myReference.document && myReference.document != window.document ) {
  //used by layers browsers
  myReference.document.open();
  myReference.document.write(content);
  myReference.document.close();
}
}

function setupMoviePlayer()
{
	//alert(navigator.userAgent);
	var content = null;
	if(navigator.userAgent.indexOf("Mac") != -1)
	{
		content='<OBJECT id="movie" CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"  CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab" WIDTH="320" HEIGHT="180" > <PARAM NAME="src" VALUE="LOGOV2.mov" > <PARAM NAME="autoplay" VALUE="true" > <embed name="player" src="LOGOV2.mov" enablejavascript="true" width="320" height="180" showstatusbar="false" controller="false" autoplay="true"></EMBED></OBJECT>';
	}
	else
	{
		//content='<OBJECT id="movie" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mmplayer/en/nsmp2inf.cab#Version=5,1,52,701" width="320" height="180" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject" name="movie"><PARAM name="FileName" value="http://205.178.152.121/978728/demo1.wmv"><PARAM name="ShowControls" value="false"><PARAM name="loop" value="false"><embed name="player" type="application/x-mplayer2"  ShowStatusBar="0" AutoSize="true" loop="false" EnableContextMenu="0" KIOSKMODE="TRUE" DisplaySize="0" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/"></embed></OBJECT>';
		content='<OBJECT id="movie" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mmplayer/en/nsmp2inf.cab#Version=5,1,52,701" width="320" height="180" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject" name="movie"><PARAM name="FileName" value="demo1.wmv"><PARAM name="ShowControls" value="false"><PARAM name="loop" value="false"><embed name="player" type="application/x-mplayer2"  ShowStatusBar="0" AutoSize="true" loop="false" EnableContextMenu="0" KIOSKMODE="TRUE" DisplaySize="0" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/"></embed></OBJECT>';

	}
		//alert(content);
		writeContent('moviePlayer',content);
}



		

function setupWeddingPlayer(startup)
{
	//alert(navigator.userAgent);
	var content = null;
	if(navigator.userAgent.indexOf("Mac") != -1)
	{
		if(startup)
		{
			content='<OBJECT id="movie" CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"  CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab" WIDTH="320" HEIGHT="180" > <PARAM NAME="src" VALUE="RA_RECEP_320_180_H264.mov" > <PARAM NAME="autoplay" VALUE="true" > <embed name="player" src="RA_RECEP_320_180_H264.mov" enablejavascript="true" width="320" height="180" showstatusbar="false" loop="true" controller="false" autoplay="true"></EMBED></OBJECT>';
		
		}
		else return;
	}
	else
	{
		//content='<OBJECT id="movie" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mmplayer/en/nsmp2inf.cab#Version=5,1,52,701" width="320" height="180" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject" name="movie"> <PARAM name="FileName" value="http://205.178.152.121/978728/MasterPictures.wmv"><PARAM name="ShowControls" value="false"><PARAM name="loop" value="true"><embed name="player"  type="application/x-mplayer2"  ShowStatusBar="0" AutoSize="true" loop="true" EnableContextMenu="0" DisplaySize="0" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/"></embed></OBJECT>';
		content='<OBJECT id="movie" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mmplayer/en/nsmp2inf.cab#Version=5,1,52,701" width="320" height="180" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject" name="movie"> <PARAM name="FileName" value="MasterPictures.wmv"><PARAM name="ShowControls" value="false"><PARAM name="loop" value="true"><embed name="player"  type="application/x-mplayer2"  ShowStatusBar="0" AutoSize="true" loop="true" EnableContextMenu="0" DisplaySize="0" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/"></embed></OBJECT>';
	}
		//alert(content);
		writeContent('moviePlayer',content);
}

