
function submitForm(frm,Action,target){
	frm.action = Action;
	frm.target = target;
	frm.method="get";
	frm.submit();
}



