//Javascript name: My Date Time Picker
//Date created: 16-Nov-2003 23:19
//Scripter: TengYong Ng
//Website: http://www.rainforestnet.com
//Copyright (c) 2003 TengYong Ng
//FileName: DateTimePicker.js
//Version: 0.8
//Contact: contact@rainforestnet.com
// Note: Permission given to use this script in ANY kind of applications if
//       header lines are left unchanged.

function select_new_step() {		


		var tmp_form = document.getElementById('my_choise_form');
		var code_operation = document.getElementById("select_choice").selectedIndex;
		var tmp_url = document.getElementById("select_choice").value;
		
		// alert(tmp_url);
		
		if (code_operation != "" ) {
				location.replace(tmp_url);
				
				// document.forms["my_choise_form"].action = 'index.php';
				// document.forms["my_choise_form"].submit();
			
				// tmp_form.setAttribute("method","POST");
				// tmp_form.setAttribute("action",url_add);  
				// tmp_form.submit();
		}
}

