function textArea_blur(TxtArea,TxtInicial) 
{  
    if(TxtArea.value == "") 
    { 
        TxtArea.value = TxtInicial; 
    }
} 

function textArea_focus(TxtArea,TxtInicial) 
{ 
    if(TxtArea.value == TxtInicial) 
    { 
        TxtArea.value=""; 
    } 
} 
