// JavaScript Document
window.onload = initForm;

function initForm() {
	document.getElementById("Resource").selectIndex = 0;
	document.getElementById("Resource").onchange = ChangeiFrame;

}

function ChangeiFrame(){
var newIndex;
var theIFrame;
	newIndex = document.getElementById("Resource").selectIndex;
	theIFrame = document.getElementById("LinkList").source;
	//concat and set the new source item in the LinkList iFrame
	//TODO
}