<!--
function resetValues(objForm) {
	for (var i=0, j=objForm.elements.length; i<j; i++) {
	    myType = objForm.elements[i].type;
	    if (myType == 'checkbox' || myType == 'radio')
	        objForm.elements[i].checked = "";
	    if (myType == 'password' || myType == 'text' || myType == 'textarea')
	        objForm.elements[i].value = "";
	    if (myType == 'select-one')
			objForm.elements[i].selectedIndex=0;
		if (myType == 'select-multiple')
	        objForm.elements[i].selectedIndex=-1;
	}
}

function openWindowInfo(page, windowname) {
	popupWin = window.open(page, windowname,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,copyhistory=0,width=600,height=300,top=110,left=120');
	popupWin.focus()
}

function formAction(form, displayPage) {
   form.action = displayPage;
}

//-->