// JavaScript Document
initialValues      = new Array();
initialValues['cerca']   = 'cerca';
initialValues['nome']   = 'nome*';
initialValues['cognome']   = 'cognome*';
initialValues['email']   = 'email*';
initialValues['testo']   = 'testo';

/************ svuota ********************/
function emp(o) {
if (o.value == initialValues[o.name]) o.value = '';
}
/********** Formatta campo **********/
function testFill(o) {
 if (o.value=='') {
o.value=initialValues[o.name];
 } else if (o.value != initialValues[o.name]) {
 }
}
