function sendsms(){
    $.post('/testsms/', 
    		$("#testsms").serialize(), 
    		function(data){
    			$("#div_test_sms").html(data);
    		} 
    );
}

function focusPocus(obj){
    if(obj.id=='phone_prefix'){
    	str = obj.value;
    	if(str.length==3){
    		document.getElementById('phone').focus();
    	}
    }
    if(obj.id=='phone'){
    	str = obj.value;
    	if(str.length==7){
    		document.getElementById('keystring').focus();
    	}
    }
    
}
function Validate(forma){
	for(i=0;i<fields.length;i++){
		field = fields[i];
		if (forma.elements[field].value == ""){
			alert("Вы должны заполнить поле \""+fieldnames[i]+"\"");
			forma.elements[field].focus(); 
			return false;
		}
	}
	return true;
}
