function LoadSWF() {
	var theSWF = document.getElementById("selections").value;
	var so = new SWFObject(theSWF, "mymovie", "740", "750", "7", "#85B4D6");
	so.write("tech");
	$("tech").style.display = "block";
}

function My_Request(){ http( 'GET'  , 'jsmx.xml' , My_Response ); }
function My_Response(obj){ 
	//alert(obj.getElementsByTagName("string")[0].firstChild.data);
	var lgth = $('theform').selections.options.length - 1;
	var idx = document.getElementById('theform').selections.selectedIndex;
	alert(idx);
	
	if ($('theform').selections.selectedIndex != lgth) {
	var clip = obj.getElementsByTagName("string")[idx].firstChild.data;
	
	var so = new SWFObject(clip, "mymovie", "740", "750", "7", "#85B4D6");
	so.write("tech");
	
	$("tech").style.display = "block";
	}
}
function clear() {
	$("tech").innerHTML = '';
	$("tech").style.display = "none";
	
}
function handleIt() {
	clear();
	My_Request();
}
function setList() {
	var lgth = $('theform').selections.options.length - 1;
	$('theform').selections.selectedIndex = lgth;	
}

//
window.onload = function() {
	setList();
}