// JavaScript Document

function linkIt(theField) {
	var winTarget = "_top";
	if(theField[theField.selectedIndex].value) {
		open(theField[theField.selectedIndex].value, winTarget,"toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1,copyhistory=1");
	}
}