	  function loadurl(dest) {

	  try {
		  xmlhttp = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");

	  } catch (e) {
	  }
	  xmlhttp.onreadystatechange = triggered;
	  xmlhttp.open("GET", dest);
	  xmlhttp.send(null);
	  }
	  function triggered() {
	  if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
		  document.getElementById("output").innerHTML = xmlhttp.responseText;
	  }
	  }
	  
	  function loadselect(dest) {

	  try {
		  xmlhttp = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");

	  } catch (e) {
	  }
	  xmlhttp.onreadystatechange = trig;
	  xmlhttp.open("GET", dest);
	  xmlhttp.send(null);
	  }
	  function trig() {
	  if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
		  document.getElementById("videoselect").innerHTML = xmlhttp.responseText;
	  }
	  }