!TUTTO RISOLTO con un po di ingegno .. e ho creato anche un funzioncina


codice:
function testo_form($campo,$scritta){
	if(empty($campo)){
	         $var = <<<DAT
			 class="sugg" value="$scritta" onfocus="this.value=''; this.className='normaleform'"; onblur="if(this.value== '') this.value='Scrivi Il Testo'; this.className='sugg'";
DAT;
                       return $var;} else { return 'class="normaleform" value="'.$campo.'"';}
}