Emv.VideodeMobil = {

    Dom: YAHOO.util.Dom, 

    /**
     * Submit the teaser form (after validation).
     * 
     * @param string fieldElementId
     * @param string formElementId
     * @return boolean false
     */
	teaserSubmit: function(fieldElementId, formElementId) {

	    var options = {
	        'submitForm': this.Dom.get(formElementId),
	        'validate'  : [
               {
                   'element'  : fieldElementId,
                   'label'    : 'Handy-Nr.',
                   'errormsg' : 'Handy-Nr. darf nur Ziffern enthalten.',
                   'validator': 'phone',
                   'value'    : this.Dom.get(fieldElementId).value
               }
	        ]
	    };

	    Emv.VideodeFormvalidation.validateSubmit(options);
	    return false;
	}
}
