// JavaScript Document

function checkSpryForm(myForm) {		
	var SS= Spry.Widget.Form.validate(myForm);
	if(SS==true){
		return true;
	} else return false;	
}

function focusFormular(f, act1, act2){
	var myForm=document.getElementById(f);
	
	try{
		myForm.action = act1+act2;
	}catch(e){
		myForm.setAttribute('action', act1+act2);
	}
}
