var basehref = "script/";
//function that inserts exeternal javascript files
function addScripts(scriptlocation){
		//quick detect for outdated browsers
		if(document.getElementById && document.createElement){
		} else {
			return(false);
		}
		
		for (i=0; i<scriptlocation.length; ++i) {
			//document.write("<li>" + allscripts[i] + "</li>");
			//domEl('li',scriptlocation[i],'',el_list,0);
			document.write('<script src="' + basehref + scriptlocation[i] + '" type="text/JavaScript"><\/script>');
		} // for		
}
//adding files
addScripts(["onload.js","domel.js"]);

//required for onload.js - all functions called during onload must be called here.
function doStuff(){
	domEl('p','This site\'s design is only visible in a graphical browser that supports web standards. The content is still accessible to any browser or Internet device.',[['id','upgrade_statement'],['class','upgrade']],document.body,0,1);
	el_upgrade_statement = document.getElementById('upgrade_statement');
}

//breaks pages out of framesets if within them
if (window != top) top.location.replace(location.href);