function thisMovie(movieName) {
        var isIE = navigator.appName.indexOf("Microsoft") != -1;
        return (isIE) ? window[movieName] : document[movieName];
    }

function getFlashMovieObject(movieName)
{
if (window.document[movieName]) 
{
return window.document[movieName];
}
if (navigator.appName.indexOf("Microsoft Internet")==-1)
{
if (document.embeds && document.embeds[movieName])
return document.embeds[movieName]; 
}
else // if (navigator.appName.indexOf("Microsoft Internet")!=-1)
{
return document.getElementById(movieName);
}
}


function makeCall(menuID) {
	if (document.getElementById("dna_pl_dack")) {
		document.getElementById("dna_pl_dack").getMenuIndx(menuID);

	} else if (document.embeds["dna_pl_dack"]) {
		document.embeds["dna_pl_dack"].getMenuIndx(menuID);

	} else if (window.document["dna_pl_dack"]) {
		window.document["dna_pl_dack"].getMenuIndx(menuID);
    }
}


function selectedMenuIndx(menuID) {
		document.inForm.inField.value = "AS > : " + menuID;
}


