<!--

//Function to pass javascript variable to actionscript variable
var movieName = "myMovie";

function thisMovie(movieName) {
  if (navigator.appName.indexOf ("Microsoft") !=-1) {
    return window[movieName]
  }	else {
    return document[movieName]
  }
}

function GetFlashVideo(sUrl) {
	thisMovie(movieName).SetVariable('fName', sUrl);
}

// Function to delete a record from the database
function deleterecord(iRecId) {
	var temp=window.confirm('Do you really want to delete this text?\nNote: All related videofiles will be removed from the server!');

	if (temp == true) {
		//If OK selected, delete files and db record
		window.location = 'delrecord.asp?id=' + iRecId;
	}
}
//-->