﻿function PlayMedia(newurl)
{
    
	if(document.getElementById('mediaplayer') != null)
	{
		document.getElementById('mediaplayer').innerHTML='<object classid="clsid:22d6f312-b0f6-11d0-94ab-0080c74c7e95"'
		+'type="application/x-oleobject" width="320" height="285">'
		+'<param name="showControls" value="true">'
		+'<param name="fileName" value="'+newurl+'">'
		+'<embed type="application/x-mplayer2" width="320" height="285"'
		+'showcontrols="true" src="'+newurl+'"><\/embed><\/object>';
	}
	else
	{
		alert("Cannot locate the required div.");
	}
}

function MediaUrl(mediaurl)
{
	
	
	window.location='mailto:?subject=Something of interest from the Citadel website?body='+ location.href+'%3furl='+mediaurl;


}




function PlayMediaNew(newurl)
{
	
	if(document.getElementById('mediaplayer') != null)
	{
		document.getElementById('mediaplayer').innerHTML='<object classid="clsid:22d6f312-b0f6-11d0-94ab-0080c74c7e95"'
		+'type="application/x-oleobject" width="320" height="285">'
		+'<param name="showControls" value="true">'
		+'<param name="fileName" value="'+newurl+'">'
		+'<embed type="application/x-mplayer2" width="320" height="285"'
		+'showcontrols="true" src="'+newurl+'"><\/embed><\/object>';
	}
	else
	{
		alert("Cannot locate the required div.");
	}
}


function PlayMediaInNewWindow(newurl)
{
	var newwindow;
	
	
	newwindow = window.open("http://citadel.bsolve.co.za/WhoWeAre/Pages/WebCastViewer.aspx?"+newurl);
	
	if(window.focus)
	{
	newwindow.focus();
	}
	
	
}

