// JavaScript Document


function loadurls(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 checkoutput() {
	document.getElementById("output").style.display="block"; }*/

