function saveForm(val)
{
 ActivForm = val;
 if(val.name=='new_user')
 { 
 	linc = "/form/save.php?company="+document.getElementById('company').value+
	"&name="+document.getElementById('user_name').value+
	"&mail="+document.getElementById('email').value+
	"&info="+document.getElementById('info').value;
 }

 document.getElementById('ifr').src = linc;
}