function userWebFields(){
	
	//Pintamos los campos del formulario que van antes del input para introducir el tel�fono
	//Printing fields going before the one to enter the msisdn 

	var html = '<tr><td>Vor-und Nachname: *</td><td><input type="text"  name="userName" id="userName"  value="" size="30" class="kundenservice" />';
	html+= '<span id="1" class="validate">&nbsp;&nbsp;*Pflichtfeld</span></td><td></td></tr>';
	html+= '<tr><td>Emailadresse: *</td><td><input type="text" name="emailSender" id="emailSender" value="" size="30" class="kundenservice" />';
	html+= '<span  id="2" class="validate">&nbsp;&nbsp;*Pflichtfeld</span></td><td></td></tr>';
	
	
	var first_Child =$('#kundenservice tr:first'); 
	
	first_Child.before(html);
	
	//Pintamos los campos que van despu�s de el primer option button
	//Printing  fields going after the first radio button 
	
	    html = '<tr><td colspan="3"><input type="radio" name="radio_unsubs" value="request"/>Ich habe eine andere Frage, und zwar</td>';
        html += '<tr/><tr><td colspan="3" valign="top">Bitte gib hier Deine Nachricht ein:';
		html += '</td></tr><tr><td colspan="2"><textarea name="text" cols="35" rows="5" id="text"></textarea>';
        html += '<span id="4" class="validate">&nbsp;&nbsp;*Pflichtfeld</span></td>';
		html +=	'<td></td></tr>';
		
    // Calcular la posicion del elemento dentro de la coleccion de tr del tbody donde queremos insertar los campos , en este caso sacamos el n�mero de tr que hay 
	// y le restamos dos ya que la queremos insertarlos justo antes de ultimo elemento que es el boton de submit.
	// Getting the position where we have to insert the code above that in contained witthin the html variable, in this case we need to substract 2 as we want to
	//insert it before the submit button
	
	var pos  = ($('#kundenservice tbody').children().length)  -2; 

          //$('#kundenservice tr:eq(5)').after(html);
	$('#kundenservice tr:eq(' + pos + ')').after(html);
	
	
	
	//Una vez que todo esta pintado generamos el evento click de los radio butons que deciden que actino ejectutar si el de sendEmail o el de Unsub  dpoendiendo de cual 	est� seleccionado.
	//Once all fields are printing on screen the click events for the radio button fileds are generated to switch the action to be executed, either Unsub or SendEmail 			    depending on the one selected
	
	
	$("input[name='radio_unsubs']").change(function(){
    	if ($("input[name='radio_unsubs']:checked").val() == 'unsubs'){
			$("input[name='act']").attr({'value' : 'SendEmail'});
			
		}
 		else if ($("input[name='radio_unsubs']:checked").val() == 'request'){
			$("input[name='act']").attr({'value' : 'UnSubs'});
			
		}
        
   
	});
 
}