function submit(objForm){
	objForm.submit();
}

function setActionSubmit(objForm, strAction){
	objForm.action = strAction;
	objForm.submit();
}

function moveLocation(strUrl){
	location.href = strUrl;
}