/// <reference path="jquery-1.3.2.js" /> 
$(document).ready(function() {
						   var tekst;
		$('#ch_wyc').click(function(){
					if($('#ch_wyc').attr('checked')==true)
						{
							$('#uwagi').attr('value',tekst_dot_wsp);
						}
					else	
						{
							$('#uwagi').attr('value','');}
						});
		$('#uwagi').focus(function(){
				$(this).attr('value',' ');
		});
	
		$('#uwagi').blur(function(){
								tekst = $(this).attr('value');
								if($('#ch_wyc').attr('checked')==true)
								  $(this).attr('value',tekst_dot_wsp);
								  
		});
		$('.send_form').click(function(){
									   $('#uwagi').attr('value',tekst);
									   });
	
					
});
		