function gethttpWelcome(s) {
   a=document.getElementById("wel");
   vidpath=document.getElementById("path");

   totvid="";
   totvid=vidpath.value + a.value;
   
   if (a.value!="") {
	callExternalInterface(totvid,1);
	
	} else {
	thisMovie("ehlert").goHome(f);
		
	}
   
}

function playIt(f,choice) {
   callExternalInterface(f,choice);
}

function callExternalInterface(f,choice) {
    
    if(choice==1) {
	  thisMovie("ehlert").gohttpWelcome(f);
	  } else {
	  thisMovie("ehlert").goHome(f);
	  }
}

function thisMovie(movieName) {
    if (navigator.appName.indexOf("Microsoft") != -1) {
      return window[movieName]
    } else {
      return document[movieName]
    }
}