function call_feedback(form_id)
{
	var feedback = window.open('', 'feedback',"location=0,status=0,scrollbars=1,width=450,height=600");
   	feedback.focus();
   	document.getElementById(form_id).submit();
}