Ver Mensaje Individual
  #6 (permalink)  
Antiguo 08/04/2008, 20:03
Avatar de tommylogan
tommylogan
 
Fecha de Ingreso: marzo-2008
Ubicación: Mexico DF
Mensajes: 41
Antigüedad: 16 años, 1 mes
Puntos: 0
Re: Error con formulario de contacto

en el flash viene este texto en la seccion de contacto

serv="php";

var fields_descriptions= Array ("",
Array("t1", "your_name", "Your Name:"),
Array("t2", "your_email", "Your Email:"),
Array("t3", "message", "Message:")
);

function reset_txt(name,name2,value) {
path=eval(_target);
path[name2]=value;

this[name].onSetFocus=function() {
path=eval(_target);
if(path[name2]==value) { path[name2]="";}
}

this[name].onKillFocus=function() {
path=eval(_target);
if(path[name2]=="") { path[name2]=value;}
}
}


for (i=1; i<=fields_descriptions.length; i++) {
reset_txt("t"+i, fields_descriptions[i][1], fields_descriptions[i][2]);
}

Última edición por tommylogan; 08/04/2008 a las 20:29