	var launcher, code;
				function chooseImage(theInput, theDir) {

					code = theInput.substr(0,theInput.indexOf("!",theInput.indexOf("-")));
					//setFieldsLook(code);
					//alert (document.forms['data'].elements[theInput].name);

					if(theDir) {
						theFolder = "?fldr=" + theDir;
					} else {
						theFolder = "";
					}

					window.open('upload.php' + theFolder,'upload','width=600,height=500,scrollbars=yes,resizable=yes,status=yes');
					
					
					launcher = document.forms['data'].elements[theInput];
				}
			/*
				function resetFieldsLook() {

					for (i=0;i <document.forms['data'].elements.length;i++) {

						fld = document.forms['data'].elements[i];
						
						if (fld.style.backgroundColor == "#ffff00") {
							fld.style.backgroundColor = "#ffffff";
						}
						
					}

				}
				function setFieldsLook(theCode) {

					resetFieldsLook();
					for (i=0;i<document.forms["data"].elements.length;i++) {

						fld = document.forms["data"].elements[i];
						if (fld.name.indexOf(theCode) != -1) {
							fld.style.backgroundColor = "#ffff00";
						}
					}

				}
				*/