// Para compatibilidad con NS
function mostrarTexto (texto, fuente) {
if (document.all) return texto;
return '' + texto + '';
}
// Sólo muestra el texto en IE
function mostrarIE (texto) {
if (document.all) return texto;
return "";
}
// Principal
function EVSearch(ancho, borde, fuente, colorborde, colorfondo, colorlinks, colorletra) {
var urlpag = 'http://www.enciclopediavirus.com';
// Encabezado
var encabezado = '
| ' + mostrarTexto('BUSCADOR DE VIRUS', fuente) + ' |
|
';
// Buscador
var buscador = '';
var texto = '';
texto += ' |
';
texto += '
';
return texto;
}