	function go_to(to_page,confirm_msg) {
		if (confirm_msg == "") {
			document.location= to_page;
		}
		else {
			if(confirm(confirm_msg)) {
				document.location= to_page;
			}
		}
	}
	
	function submit_to(to_page,form_name,id,confirm_msg) {
		f = document[form_name];
		if (id != '')
			f.id.value = id;
		f.action = to_page;
		if(confirm_msg == "") 	
			f.submit();		
		else if(confirm(confirm_msg))  
			f.submit();		
	}
	
	function post_to(to_page,form_name,id,htm_frm_state,confirm_msg) {
		f = document[form_name];

		if (id != '')
			f.id.value = id;

		if (htm_frm_state != '')
			f.htm_frm_state.value = htm_frm_state;
		
//		if (f.action != '')
			f.action = to_page;

		if(confirm_msg == "") 	
			f.submit();		
		else if(confirm(confirm_msg))  
			f.submit();		
	}