function PageRedirect(pc_action,pc_form)
{
	//alert('action = ' + pc_action);
	//alert('form = ' + pc_form);
		
	document.getElementById(pc_form).action = pc_action;
	document.getElementById(pc_form).submit();
}
