// JavaScript Document
function formHandler(theForm) {
var windowprops = "height=600,width=640,location=no,"
+ "scrollbars=yes,menubars=no,toolbars=no,resizable=no";
var selectedIndex = document.theForm.images.selectedIndex;
var codeOption = document.theForm.images[selectedIndex].value;
popup = window.open(codeOption,"MenuPopup",windowprops);
}

