<!-- // © Iddea Soluciones Internet S.L. 1.998 webmaster@iddea.es César Sánchez Novo

function limpiar(campo){
    if (campo.value==campo.defaultValue)
    {
        campo.value=''
    }
}

function verCampo(campo){
    if (campo.value=='' || campo.value==' ')
    {
        campo.value=campo.defaultValue
    }
}


function validar(){


    if (document.mirko.Nombre.value==document.mirko.Nombre.defaultValue ||
    document.mirko.Nombre.value.indexOf(' ',0)==0)
    {
        alert('\nWrite your name, Please.')
        document.mirko.Nombre.select()
        document.mirko.Nombre.focus()
        return false
    }

    if (document.mirko.Empresa.value==document.mirko.Empresa.defaultValue ||
    document.mirko.Empresa.value.indexOf(' ',0)==0)
    {
        alert('\nWrite the name of the company, Please')
        document.mirko.Empresa.select()
        document.mirko.Empresa.focus()
        return false
    }

   if (document.mirko.Telefono.value==document.mirko.Telefono.defaultValue)
    {
        alert('\nWrite the phone of the company, Please.')
        document.mirko.Telefono.select()
        document.mirko.Telefono.focus()
        return false
    }

   if (document.mirko.Telefono.value.indexOf('9',0)==-1)
        {
            alert('\nInvalid phone number.')
            document.mirko.Telefono.select()
            document.mirko.Telefono.focus()
            return false
        }
    if (document.mirko.email.value==document.mirko.email.defaultValue)
    {
        alert('\nWrite your E-Mail, Please.')
        document.mirko.email.select()
        document.mirko.email.focus()
        return false
    }
        if (document.mirko.email.value.indexOf('@',0)==-1 ||
        document.mirko.email.value.indexOf('.',0)==-1)
        {
            alert('\nInvalid E-Mail.')
            document.mirko.email.select()
            document.mirko.email.focus()
            return false
        }

    else
    {
        if(confirm('\nPush Ok, Please.')){
  
            return true 
   
        }
        else
        {
            return false
        }
    }
}


//-->
