<!-- js_raiffeisen_at_b.js - start -->
<!--


function sendgeneratedform(formname) {
 
//alert(document.getElementsByName(formname)[0].name);
top.document.getElementsByName(formname)[0].action = targetfeature;
top.document.getElementsByName(formname)[0].target = "_top";
	

}

function loginValues(fieldname, fieldpassword, defaultValue, option, optionValue) {
	
	//Clears the defaultvalue of the field 'fieldname';
	//if option is 'pass' the type is changed to 'password';
	//if option is 'maxlength' maxlength is set to 'optionValue;
		document.getElementById(fieldname).value = "";
		
		if (option == 'pass')
		{
			document.getElementById(fieldname).style.display = "none";
			document.getElementById(fieldpassword).style.display = "block";
			document.getElementById('pwdinput').focus();
		}
		else if (option== 'maxlength')
		{
			document.getElementById(fieldname).maxLength = optionValue;
		}
}


//-->
<!-- js_raiffeisen_at_b.js - end -->