plantilla by javidj
   
  ­
  ____CODIGOS HTML_____
 

CON ESTE CODIGO HARAS QUE HAYA UN TEXTO AL REDEDOR DEL PUNTERO.

----Copiar dentro del Head----------------

<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Kurt Grigg (kurt.grigg@virgin.net) -->
<!-- Web Site: http://website.lineone.net/~kurt.grigg/javascript -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
if (document.all) {
//Things you can alter
yourLogo = "Aqum tu texto-"; //Not less than 2 letters!
logoFont = "Arial";
logoColor = "000000";
//Nothing needs altering below!
yourLogo = yourLogo.split('');
L = yourLogo.length; 
TrigSplit = 360 / L;
Sz = new Array()
logoWidth = 100;
logoHeight = -30;
ypos = 0;
xpos = 0;
step = 0.03;
currStep = 0;
document.write('<div id="outer" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i = 0; i < L; i++) {
document.write('<div id="ie" style="position:absolute;top:0px;left:0px;'
+'width:10px;height:10px;font-family:'+logoFont+';font-size:12px;'
+'color:'+logoColor+';text-align:center">'+yourLogo[i]+'</div>');
}
document.write('</div></div>');
function Mouse() {
ypos = event.y;
xpos = event.x - 5;
}
document.onmousemove=Mouse;
function animateLogo() {
outer.style.pixelTop = document.body.scrollTop; 
for (i = 0; i < L; i++) {
ie[i].style.top = ypos + logoHeight * Math.sin(currStep + i * TrigSplit * Math.PI / 180);
ie[i].style.left = xpos + logoWidth * Math.cos(currStep + i * TrigSplit * Math.PI / 180);
Sz[i] = ie[i].style.pixelTop - ypos;
if (Sz[i] < 5) Sz[i] = 5;
ie[i].style.fontSize = Sz[i] / 1.7;
}
currStep -= step;
setTimeout('animateLogo()', 20);
}
window.onload = animateLogo;
}
// End -->
</script>
----Copiar dentro del Head----------------

<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Kurt Grigg (kurt.grigg@virgin.net) -->
<!-- Web Site: http://website.lineone.net/~kurt.grigg/javascript -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
if (document.all) {
//Things you can alter
yourLogo = "Aqum tu texto-"; //Not less than 2 letters!
logoFont = "Arial";
logoColor = "000000";
//Nothing needs altering below!
yourLogo = yourLogo.split('');
L = yourLogo.length; 
TrigSplit = 360 / L;
Sz = new Array()
logoWidth = 100;
logoHeight = -30;
ypos = 0;
xpos = 0;
step = 0.03;
currStep = 0;
document.write('<div id="outer" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i = 0; i < L; i++) {
document.write('<div id="ie" style="position:absolute;top:0px;left:0px;'
+'width:10px;height:10px;font-family:'+logoFont+';font-size:12px;'
+'color:'+logoColor+';text-align:center">'+yourLogo[i]+'</div>');
}
document.write('</div></div>');
function Mouse() {
ypos = event.y;
xpos = event.x - 5;
}
document.onmousemove=Mouse;
function animateLogo() {
outer.style.pixelTop = document.body.scrollTop; 
for (i = 0; i < L; i++) {
ie[i].style.top = ypos + logoHeight * Math.sin(currStep + i * TrigSplit * Math.PI / 180);
ie[i].style.left = xpos + logoWidth * Math.cos(currStep + i * TrigSplit * Math.PI / 180);
Sz[i] = ie[i].style.pixelTop - ypos;
if (Sz[i] < 5) Sz[i] = 5;
ie[i].style.fontSize = Sz[i] / 1.7;
}
currStep -= step;
setTimeout('animateLogo()', 20);
}
window.onload = animateLogo;
}
// End -->
</script>




ESTE CODIDO PONE EL TEXTO QUE TU ELIJAS A FLOTAR EN LA PANTALLA DEL NAVEGADOR 

<script language="JavaScript">
<!--
done = 0;
step = 4
function anim(yp,yk)
{
if(document.layers) document.layers["texto"].top=yp;
else document.all["texto"].style.top=yp;
if(yp>yk) step = -4
if(yp<60) step = 4
setTimeout('anim('+(yp+step)+','+yk+')', 35);
}
function start()
{
if(done) return
done = 1;
if(navigator.appName=="Netscape") {
document.texto.left=innerWidth/2 - 145;
anim(60,innerHeight - 60)
}
else {
texto.style.left=11;
anim(60,document.body.offsetHeight - 60)
}
}
// --></script>

<div id="texto" style="position: absolute; top: -50; color: #FF8000; font-family: Arial, Helvetica; font-weight:bold; font-size:40px;">
<p><font face="Arial, Helvetica, sans-serif" size="3"><b><font size="6" color="#990000">Saludos de Fagoco</font></b></font></p>
</div>

<script language="JavaScript">
<!--
setTimeout('start()',10);
//-->
</script>

<script language="JavaScript">
<!--
done = 0;
step = 4
function anim(yp,yk)
{
if(document.layers) document.layers["texto"].top=yp;
else document.all["texto"].style.top=yp;
if(yp>yk) step = -4
if(yp<60) step = 4
setTimeout('anim('+(yp+step)+','+yk+')', 35);
}
function start()
{
if(done) return
done = 1;
if(navigator.appName=="Netscape") {
document.texto.left=innerWidth/2 - 145;
anim(60,innerHeight - 60)
}
else {
texto.style.left=11;
anim(60,document.body.offsetHeight - 60)
}
}
// --></script>

<div id="texto" style="position: absolute; top: -50; color: #FF8000; font-family: Arial, Helvetica; font-weight:bold; font-size:40px;">
<p><font face="Arial, Helvetica, sans-serif" size="3"><b><font size="6" color="#990000">Saludos de Fagoco</font></b></font></p>
</div>

<script language="JavaScript">
<!--
setTimeout('start()',10);
//-->
</script> 



ESTE CODIGO LO QUE HACE ES PONER UN FONDO INTERMITENTE X UNOS SEGUNDOS.

<script language="JavaScript">
<!--

// Copyright 2001 by www.CodeBelly.com
// Por favor *NO* remover esta noticia.

var backColor = new Array(); // don't change this

// velocidad (in milliseconds).

var dwellTime = 500; 

// Poner los colores que deseas usar. el ultimo
// backColor[4] sera el color definitivo de la
// pagina.

backColor[0] = '#FF0000';
backColor[1] = '#33ff33';
backColor[2] = '#3333ff';
backColor[3] = '#ffff00';
backColor[4] = '#FFFFFF';
function flashBG(whichColor){
document.bgColor = backColor[whichColor];
}

var t = null;
var d = dwellTime;

t = setTimeout('flashBG(0)',(d-d));
t = setTimeout('flashBG(1)',(d));
t = setTimeout('flashBG(2)',(d*2));
t = setTimeout('flashBG(3)',(d*3));
t = setTimeout('flashBG(4)',(d*4));

t = null;

//-->
</script>
<script language="JavaScript">
<!--

// Copyright 2001 by www.CodeBelly.com
// Por favor *NO* remover esta noticia.

var backColor = new Array(); // don't change this

// velocidad (in milliseconds).

var dwellTime = 500; 

// Poner los colores que deseas usar. el ultimo
// backColor[4] sera el color definitivo de la
// pagina.

backColor[0] = '#FF0000';
backColor[1] = '#33ff33';
backColor[2] = '#3333ff';
backColor[3] = '#ffff00';
backColor[4] = '#FFFFFF';
function flashBG(whichColor){
document.bgColor = backColor[whichColor];
}

var t = null;
var d = dwellTime;

t = setTimeout('flashBG(0)',(d-d));
t = setTimeout('flashBG(1)',(d));
t = setTimeout('flashBG(2)',(d*2));
t = setTimeout('flashBG(3)',(d*3));
t = setTimeout('flashBG(4)',(d*4));

t = null;

//-->
</script>
 

MUESTRA TU LOGO DE FORMA ESTATICA

<span id="logons6" style="position:absolute;"></span>
<script>
// 1) sustituye 150 y 170 con el ancho y el alto de tu imagen
var logowidth=116
var logoheight=42
var staticlogo=new Image(logowidth,logoheight)

// 2) cambia la direccion de la imagen por la tuya
staticlogo.src="http://www.fagoco.com/fernandoalonso/foto fernando alonso.JPG"

// 3) cambia la url por la de tu pagina
var logolink="prueba.htm"

// 4) cambia alttext por otro texto, el mismo que pondrias en el alt="" de un tag IMG 
var alttext="Dynamic Drive"

// 5) configura abajo "1" o "0" ("1" desbanece el logo a la vista) Note: IE 4 
var fadeintoview=1

// 6) Especifica el tiempo que se vera el logo en pantalla
//Al poner 0 el logo no desaparecera. 
var visibleduration=12


///////////////////////////No editar debajo de esta linea/////////////////////////

var ns4=document.layers
var ie4=document.all
var ns6=document.getElementById&&!document.all

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (ns4)
setTimeout("window.onresize=regenerate",400)
}


var fadeset=''
if (fadeintoview)
fadeset="filter:alpha(opacity=0)"

if (ie4)
document.write('<span id="logo" style="'+fadeset+';position:absolute;top:100;width:'+logowidth+';height:'+logoheight+'"></span>')

function bringintoview(){
if (logo.filters.alpha.opacity<=95)
logo.filters.alpha.opacity+=5
else{
clearInterval(viewit)
if (visibleduration!=0)
setTimeout("logo.style.visibility='hidden'",visibleduration*1000)
}
}

function createlogo(){
staticimage=new Layer(100)
staticimage.left=-300
staticimage.top=120
staticimage.document.write('<a href="'+logolink+'"><img src="'+staticlogo.src+'" border=0 alt="'+alttext+'"></a>')
staticimage.document.close()
staticimage.visibility="show"
regenerate2()
staticitns()
}

if (ns4)
window.onload=createlogo;
else if (ie4)
crosslogo=document.all.logo
else if (ns6)
crosslogo=document.getElementById("logons6")

if (ie4||ns6){
w=ns6? window.innerWidth-logowidth-18 : document.body.clientWidth-crosslogo.style.pixelWidth-5
h=ns6? window.innerHeight-logoheight-5 : document.body.clientHeight-crosslogo.style.pixelHeight-5
crosslogo.style.left=w
crosslogo.style.top=h
}

function logoit(){
var w2=ns6? pageXOffset+w : document.body.scrollLeft+w
var h2=ns6? pageYOffset+h : document.body.scrollTop+h
crosslogo.style.left=w2
crosslogo.style.top=h2
}
function logoit2(){
staticimage.left=pageXOffset+window.innerWidth-staticimage.document.width-18
staticimage.top=pageYOffset+window.innerHeight-staticimage.document.height-5
}

function insertimage(){
crosslogo.innerHTML='<a href="'+logolink+'"><img src="'+staticlogo.src+'" border=0 alt="'+alttext+'"></a>'
if (ie4){
if (fadeintoview)
viewit=setInterval("bringintoview()",100)
else{
if (visibleduration!=0)
setTimeout("crosslogo.style.visibility='hidden'",visibleduration*1000)
}
}
}

if (ie4){
window.onscroll=logoit
window.onresize=new Function("window.location.reload()")
window.onload=insertimage
}
else if (ns6){
startstatic=setInterval("logoit()",100)
window.onload=insertimage
window.onresize=new Function("window.location.reload()")
if (visibleduration!=0)
setTimeout("crosslogo.style.visibility='hidden';clearInterval(startstatic)",visibleduration*1000)
}


function staticitns(){
startstatic=setInterval("logoit2()",90)
if (visibleduration!=0)
setTimeout("staticimage.visibility='hide';clearInterval(startstatic)",visibleduration*1000)
}

</script>
<span id="logons6" style="position:absolute;"></span>
<script>
// 1) sustituye 150 y 170 con el ancho y el alto de tu imagen
var logowidth=116
var logoheight=42
var staticlogo=new Image(logowidth,logoheight)

// 2) cambia la direccion de la imagen por la tuya
staticlogo.src="http://www.fagoco.com/fernandoalonso/foto fernando alonso.JPG"

// 3) cambia la url por la de tu pagina
var logolink="prueba.htm"

// 4) cambia alttext por otro texto, el mismo que pondrias en el alt="" de un tag IMG 
var alttext="Dynamic Drive"

// 5) configura abajo "1" o "0" ("1" desbanece el logo a la vista) Note: IE 4 
var fadeintoview=1

// 6) Especifica el tiempo que se vera el logo en pantalla
//Al poner 0 el logo no desaparecera. 
var visibleduration=12


///////////////////////////No editar debajo de esta linea/////////////////////////

var ns4=document.layers
var ie4=document.all
var ns6=document.getElementById&&!document.all

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (ns4)
setTimeout("window.onresize=regenerate",400)
}


var fadeset=''
if (fadeintoview)
fadeset="filter:alpha(opacity=0)"

if (ie4)
document.write('<span id="logo" style="'+fadeset+';position:absolute;top:100;width:'+logowidth+';height:'+logoheight+'"></span>')

function bringintoview(){
if (logo.filters.alpha.opacity<=95)
logo.filters.alpha.opacity+=5
else{
clearInterval(viewit)
if (visibleduration!=0)
setTimeout("logo.style.visibility='hidden'",visibleduration*1000)
}
}

function createlogo(){
staticimage=new Layer(100)
staticimage.left=-300
staticimage.top=120
staticimage.document.write('<a href="'+logolink+'"><img src="'+staticlogo.src+'" border=0 alt="'+alttext+'"></a>')
staticimage.document.close()
staticimage.visibility="show"
regenerate2()
staticitns()
}

if (ns4)
window.onload=createlogo;
else if (ie4)
crosslogo=document.all.logo
else if (ns6)
crosslogo=document.getElementById("logons6")

if (ie4||ns6){
w=ns6? window.innerWidth-logowidth-18 : document.body.clientWidth-crosslogo.style.pixelWidth-5
h=ns6? window.innerHeight-logoheight-5 : document.body.clientHeight-crosslogo.style.pixelHeight-5
crosslogo.style.left=w
crosslogo.style.top=h
}

function logoit(){
var w2=ns6? pageXOffset+w : document.body.scrollLeft+w
var h2=ns6? pageYOffset+h : document.body.scrollTop+h
crosslogo.style.left=w2
crosslogo.style.top=h2
}
function logoit2(){
staticimage.left=pageXOffset+window.innerWidth-staticimage.document.width-18
staticimage.top=pageYOffset+window.innerHeight-staticimage.document.height-5
}

function insertimage(){
crosslogo.innerHTML='<a href="'+logolink+'"><img src="'+staticlogo.src+'" border=0 alt="'+alttext+'"></a>'
if (ie4){
if (fadeintoview)
viewit=setInterval("bringintoview()",100)
else{
if (visibleduration!=0)
setTimeout("crosslogo.style.visibility='hidden'",visibleduration*1000)
}
}
}

if (ie4){
window.onscroll=logoit
window.onresize=new Function("window.location.reload()")
window.onload=insertimage
}
else if (ns6){
startstatic=setInterval("logoit()",100)
window.onload=insertimage
window.onresize=new Function("window.location.reload()")
if (visibleduration!=0)
setTimeout("crosslogo.style.visibility='hidden';clearInterval(startstatic)",visibleduration*1000)
}


function staticitns(){
startstatic=setInterval("logoit2()",90)
if (visibleduration!=0)
setTimeout("staticimage.visibility='hide';clearInterval(startstatic)",visibleduration*1000)
}

</script>

 

CODIGO PARA QUE PONGAS UN CALENDARIO EN TU WEB

<html>

<head>
<title>JavaFILE</title>
<base target="leftframe">
</head>

<body BGCOLOR="#ffffff" link="#CC0033" vlink="#333399" alink="#FF0000" <!--content start-->


<table WIDTH="96%" BORDER="0" CELLSPACING="5" CELLPADDING="5">
<tr>
<td WIDTH="100%"><font size="3"><a href="http://www.jagoper.com"></a></font><font FACE="ARIEL,HELVETICA" SIZE="-1"><p align="center"><script
LANGUAGE="JavaScript">
<!--//Begin
//This script and many more are available online from
//The JavaScript Source!! http://javascriptsource.com
monthnames = new Array(
"Enero",
"Febrero",
"Marzo",
"Abril",
"Mayo",
"Junio",
"Julio",
"Agosto",
"Septiembre",
"Octubre",
"Noviembre",
"Diciembre");
var linkcount=0;
function addlink(month, day, href) {
var entry = new Array(3);
entry[0] = month;
entry[1] = day;
entry[2] = href;
this[linkcount++] = entry;
}
Array.prototype.addlink = addlink;
linkdays = new Array();
monthdays = new Array(12);
monthdays[0]=31;
monthdays[1]=28;
monthdays[2]=31;
monthdays[3]=30;
monthdays[4]=31;
monthdays[5]=30;
monthdays[6]=31;
monthdays[7]=31;
monthdays[8]=30;
monthdays[9]=31;
monthdays[10]=30;
monthdays[11]=31;
todayDate=new Date();
thisday=todayDate.getDay();
thismonth=todayDate.getMonth();
thisdate=todayDate.getDate();
thisyear=todayDate.getYear();
thisyear = thisyear % 100;
thisyear = ((thisyear < 50) ? (2000 + thisyear) : (1900 + thisyear));
if (((thisyear % 4 == 0)
&& !(thisyear % 100 == 0))
||(thisyear % 400 == 0)) monthdays[1]++;
startspaces=thisdate;
while (startspaces > 7) startspaces-=7;
startspaces = thisday - startspaces + 1;
if (startspaces < 0) startspaces+=7;
document.write("<table border=2 bgcolor=white ");
document.write("bordercolor=black><font color=black>");
document.write("<tr><td colspan=7><center><strong>"
+ monthnames[thismonth] + " " + thisyear
+ "</strong></center></font></td></tr>");
document.write("<tr>");
document.write("<td align=center>D</td>");
document.write("<td align=center>L</td>");
document.write("<td align=center>M</td>");
document.write("<td align=center>X</td>");
document.write("<td align=center>J</td>");
document.write("<td align=center>V</td>");
document.write("<td align=center>S</td>");
document.write("</tr>");
document.write("<tr>");
for (s=0;s<startspaces;s++) {
document.write("<td> </td>");
}
count=1;
while (count <= monthdays[thismonth]) {
for (b = startspaces;b<7;b++) {
linktrue=false;
document.write("<td>");
for (c=0;c<linkdays.length;c++) {
if (linkdays[c] != null) {
if ((linkdays[c][0]==thismonth + 1) && (linkdays[c][1]==count)) {
document.write("<a href="" + linkdays[c][2] + "">");
linktrue=true;
}
}
}
if (count==thisdate) {
document.write("<font color='FF0000'><strong>");
}
if (count <= monthdays[thismonth]) {
document.write(count);
}
else {
document.write(" ");
}
if (count==thisdate) {
document.write("</strong></font>");
}
if (linktrue)
document.write("</a>");
document.write("</td>");
count++;
}
document.write("</tr>");
document.write("<tr>");
startspaces=0;
}
document.write("</table></p>");
// End -->
</script> </font></td>
</tr>
</table>
<!--content stop-->
</body>
</html>

<html>

<head>
<title>JavaFILE</title>
<base target="leftframe">
</head>

<body BGCOLOR="#ffffff" link="#CC0033" vlink="#333399" alink="#FF0000" <!--content start-->


<table WIDTH="96%" BORDER="0" CELLSPACING="5" CELLPADDING="5">
<tr>
<td WIDTH="100%"><font size="3"><a href="http://www.jagoper.com"></a></font><font FACE="ARIEL,HELVETICA" SIZE="-1"><p align="center"><script
LANGUAGE="JavaScript">
<!--//Begin
//This script and many more are available online from
//The JavaScript Source!! http://javascriptsource.com
monthnames = new Array(
"Enero",
"Febrero",
"Marzo",
"Abril",
"Mayo",
"Junio",
"Julio",
"Agosto",
"Septiembre",
"Octubre",
"Noviembre",
"Diciembre");
var linkcount=0;
function addlink(month, day, href) {
var entry = new Array(3);
entry[0] = month;
entry[1] = day;
entry[2] = href;
this[linkcount++] = entry;
}
Array.prototype.addlink = addlink;
linkdays = new Array();
monthdays = new Array(12);
monthdays[0]=31;
monthdays[1]=28;
monthdays[2]=31;
monthdays[3]=30;
monthdays[4]=31;
monthdays[5]=30;
monthdays[6]=31;
monthdays[7]=31;
monthdays[8]=30;
monthdays[9]=31;
monthdays[10]=30;
monthdays[11]=31;
todayDate=new Date();
thisday=todayDate.getDay();
thismonth=todayDate.getMonth();
thisdate=todayDate.getDate();
thisyear=todayDate.getYear();
thisyear = thisyear % 100;
thisyear = ((thisyear < 50) ? (2000 + thisyear) : (1900 + thisyear));
if (((thisyear % 4 == 0)
&& !(thisyear % 100 == 0))
||(thisyear % 400 == 0)) monthdays[1]++;
startspaces=thisdate;
while (startspaces > 7) startspaces-=7;
startspaces = thisday - startspaces + 1;
if (startspaces < 0) startspaces+=7;
document.write("<table border=2 bgcolor=white ");
document.write("bordercolor=black><font color=black>");
document.write("<tr><td colspan=7><center><strong>"
+ monthnames[thismonth] + " " + thisyear
+ "</strong></center></font></td></tr>");
document.write("<tr>");
document.write("<td align=center>D</td>");
document.write("<td align=center>L</td>");
document.write("<td align=center>M</td>");
document.write("<td align=center>X</td>");
document.write("<td align=center>J</td>");
document.write("<td align=center>V</td>");
document.write("<td align=center>S</td>");
document.write("</tr>");
document.write("<tr>");
for (s=0;s<startspaces;s++) {
document.write("<td> </td>");
}
count=1;
while (count <= monthdays[thismonth]) {
for (b = startspaces;b<7;b++) {
linktrue=false;
document.write("<td>");
for (c=0;c<linkdays.length;c++) {
if (linkdays[c] != null) {
if ((linkdays[c][0]==thismonth + 1) && (linkdays[c][1]==count)) {
document.write("<a href="" + linkdays[c][2] + "">");
linktrue=true;
}
}
}
if (count==thisdate) {
document.write("<font color='FF0000'><strong>");
}
if (count <= monthdays[thismonth]) {
document.write(count);
}
else {
document.write(" ");
}
if (count==thisdate) {
document.write("</strong></font>");
}
if (linktrue)
document.write("</a>");
document.write("</td>");
count++;
}
document.write("</tr>");
document.write("<tr>");
startspaces=0;
}
document.write("</table></p>");
// End -->
</script> </font></td>
</tr>
</table>
<!--content stop-->
</body>
</html



CODIGO QUE PONE UNA CAJA CON TUS LINKS (SOLO DEBES CAMBIAR LAS URL, Y LOS NOMBRES)

<body>

<FONT face="arial,geneva,comic sans ms,helvetica" color=#003399>

 

 

size=-1>

 

 

size=-1><SELECT name=list size="1"> <OPTION

value=http://www.aytolacoruna.es/

selected>A Coruña</OPTION> <OPTION

value=http://www.vitoria-gasteiz.org>Alava</OPTION><OPTION

 

value=http://www.alicante-ayto.es/>Alicante</OPTION><OPTION

 

value=http://www.aytoalmeria.es/>Almería</OPTION><OPTION

 

value=http://www.ayto-gijon.es/>Asturias-Gijón</OPTION><OPTION

 

value=http://www.a-palma.es/>Baleares-Mallorca</OPTION><OPTION

 

value=http://www.bcn.es/>Barcelona</OPTION><OPTION

 

value=http://www.aytoburgos.es/>Burgos</OPTION><OPTION

 

value=http://www.ayto-caceres.es/>Cáceres</OPTION><OPTION

 

value=http://www.cadizayto.es/>Cádiz</OPTION><OPTION

 

value=http://www.ayto-santander.es/>Cantabria-Santander</OPTION><OPTION

 

value=http://www.ayuncas.es/portada.asp>Castellón</OPTION><OPTION

 

value=http://www.ayuncordoba.es/>Córdoba</OPTION><OPTION

 

value=http://www.ajuntament.gi/>Girona</OPTION><OPTION

 

value=http://www.granada.org/inicio.htm>Granada</OPTION><OPTION

 

value=http://www.donostia.org/>Guipuzcoa-S.Sebastián</OPTION><OPTION

 

value=http://www.ayuntamientohuelva.es/>Huelva</OPTION><OPTION

 

value=http://www.aragonesasi.com/huesca/huesca/ayuntamiento.php>Huesca</OPTION><OPTION

 

value=http://www.laspalmasgc.es/>Las Palmas</OPTION> <OPTION

value=http://www.munimadrid.es/Principal/portada.html>Madrid</OPTION><OPTION

 

value=http://www.ayto-malaga.es/>Málaga</OPTION><OPTION

 

value=http://www.pamplona.net>Navarra-Pamplona</OPTION><OPTION

 

value=http://www.concellopontevedra.es/>Pontevedra</OPTION><OPTION

 

value=http://www.aytosegovia.com/>Segovia</OPTION><OPTION

 

value=http://www.sevilla.org/>Sevilla</OPTION><OPTION

 

value=http://www.sctfe.es/>Santa Cruz de Tenerife</OPTION> <OPTION

value=http://www.fut.es/>Tarragona</OPTION><OPTION

 

value=http://www.teruel.net/>Teruel</OPTION><OPTION

 

value=http://www.ayto-valencia.es/>Valencia</OPTION><OPTION

 

value=http://www.ava.es/>Valladolid</OPTION><OPTION

 

value=http://www.bilbao.net/>Vizcaya-Bilbao</OPTION><OPTION

 

value=http://www.ayto-zaragoza.es/>Zaragoza</OPTION></SELECT></FONT>

 

 

size=-1><INPUT onclick=self.location.href=this.form.list.options[this.form.list.selectedIndex].value type=button value="Pulsa para ir" name=Button></FONT>

 

 

</body>

</html>

<body>

<FONT face="arial,geneva,comic sans ms,helvetica" color=#003399>

 

 

size=-1>

 

 

size=-1><SELECT name=list size="1"> <OPTION

value=http://www.aytolacoruna.es/

selected>A Coruña</OPTION> <OPTION

value=http://www.vitoria-gasteiz.org>Alava</OPTION><OPTION

 

value=http://www.alicante-ayto.es/>Alicante</OPTION><OPTION

 

value=http://www.aytoalmeria.es/>Almería</OPTION><OPTION

 

value=http://www.ayto-gijon.es/>Asturias-Gijón</OPTION><OPTION

 

value=http://www.a-palma.es/>Baleares-Mallorca</OPTION><OPTION

 

value=http://www.bcn.es/>Barcelona</OPTION><OPTION

 

value=http://www.aytoburgos.es/>Burgos</OPTION><OPTION

 

value=http://www.ayto-caceres.es/>Cáceres</OPTION><OPTION

 

value=http://www.cadizayto.es/>Cádiz</OPTION><OPTION

 

value=http://www.ayto-santander.es/>Cantabria-Santander</OPTION><OPTION

 

value=http://www.ayuncas.es/portada.asp>Castellón</OPTION><OPTION

 

value=http://www.ayuncordoba.es/>Córdoba</OPTION><OPTION

 

value=http://www.ajuntament.gi/>Girona</OPTION><OPTION

 

value=http://www.granada.org/inicio.htm>Granada</OPTION><OPTION

 

value=http://www.donostia.org/>Guipuzcoa-S.Sebastián</OPTION><OPTION

 

value=http://www.ayuntamientohuelva.es/>Huelva</OPTION><OPTION

 

value=http://www.aragonesasi.com/huesca/huesca/ayuntamiento.php>Huesca</OPTION><OPTION

 

value=http://www.laspalmasgc.es/>Las Palmas</OPTION> <OPTION

value=http://www.munimadrid.es/Principal/portada.html>Madrid</OPTION><OPTION

 

value=http://www.ayto-malaga.es/>Málaga</OPTION><OPTION

 

value=http://www.pamplona.net>Navarra-Pamplona</OPTION><OPTION

 

value=http://www.concellopontevedra.es/>Pontevedra</OPTION><OPTION

 

value=http://www.aytosegovia.com/>Segovia</OPTION><OPTION

 

value=http://www.sevilla.org/>Sevilla</OPTION><OPTION

 

value=http://www.sctfe.es/>Santa Cruz de Tenerife</OPTION> <OPTION

value=http://www.fut.es/>Tarragona</OPTION><OPTION

 

value=http://www.teruel.net/>Teruel</OPTION><OPTION

 

value=http://www.ayto-valencia.es/>Valencia</OPTION><OPTION

 

 

 ESTE CODIGO CREA BOTONES DE "ATRAS,ACTUALIZAR,ADELANTE"

<input type="button" value="Atras" onclick="history.back()" style="font-family: Verdana; font-size: 8 pt">
<input type="button" value="Actualizar" onclick="window.location.reload()" style="font-family: Verdana; font-size: 8 pt">
<input type="button" value="Adelante" onclick="history.forward()" style="font-family: Verdana; font-size: 8 pt">

<input type="button" value="Atras" onclick="history.back()" style="font-family: Verdana; font-size: 8 pt">
<input type="button" value="Actualizar" onclick="window.location.reload()" style="font-family: Verdana; font-size: 8 pt">
<input type="button" value="Adelante" onclick="history.forward()" style="font-family: Verdana; font-size: 8 pt">



ESTE CODIGO AGREGA UNA VENTANITA DONDE PUEDES MOSTRAR NOTICIAS, IMAGENES,ETC.

<script language="JavaScript1.2">
// ancho
var marqueewidth=200
// alto
var marqueeheight=120
// velocidad
var speed=2
// contenido
var marqueecontents='<font face="Verdana"><small>agrega noticias, etc</a><br>www.jagoper.com, puedes cambiar el color de fondo la fuente</a><br>Incluye aqui mas info</a><br>Modifica este script para tu uso</a></small></a></font>'
if (document.all)
document.write('<marquee direction="up" scrollAmount='+speed+' style="width:'+marqueewidth+';height:'+marqueeheight+'">'+marqueecontents+'</marquee>')
function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",400)
intializemarquee()
}
}
function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write(marqueecontents)
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.height
scrollit()
}
function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}
window.onload=regenerate2
</script>

 

 

<script language="JavaScript1.2">
// ancho
var marqueewidth=200
// alto
var marqueeheight=120
// velocidad
var speed=2
// contenido
var marqueecontents='<font face="Verdana"><small>agrega noticias, etc</a><br>www.jagoper.com, puedes cambiar el color de fondo la fuente</a><br>Incluye aqui mas info</a><br>Modifica este script para tu uso</a></small></a></font>'
if (document.all)
document.write('<marquee direction="up" scrollAmount='+speed+' style="width:'+marqueewidth+';height:'+marqueeheight+'">'+marqueecontents+'</marquee>')
function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",400)
intializemarquee()
}
}
function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write(marqueecontents)
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.height
scrollit()
}
function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}
window.onload=regenerate2
</script>


MUESTRA UNA VISTOSA IMAGEN TRAS EL CURSOR

<script language="JavaScript">
<!-- Updated Stars Script por kurt.grigg@virgin.net
var images="http://www.fagoco.com/trucos/zip.bmp";
var amount=5;

var yBase = 150;
var xBase = 200;
var step = .2;
var currStep = 0;
var Xpos = 5;
var Ypos = 5;
var i = 0;
var j = 0;
if (document.all)
{
document.write('<div id="ieDiv" style="position:absolute;top:0px;left:0px">')
document.write('<div id="c" style="position:relative">');
for (n=0; n < amount; n++)
document.write('<img src=" '+images+'" style="position:absolute;top:0px;left:0px">')
document.write('</div>')
document.write('</div>')

function MsieMouseFollow(){
Xpos = document.body.scrollLeft+event.x-5;
Ypos = document.body.scrollTop+event.y-5;
}
document.onmousemove = MsieMouseFollow;
}
else if (document.layers)
{
window.captureEvents(Event.MOUSEMOVE);
for (ns=0; ns < amount; ns++) 
document.write("<LAYER NAME='n"+ns+"' LEFT=0 TOP=0><IMG SRC='"+images+"'></LAYER>");
function NsMouseFollow(evnt){
Xpos = evnt.pageX-5;
Ypos = evnt.pageY-5;
}
window.onMouseMove = NsMouseFollow;
}
function Swirl(){
if (document.all)
{
yBase = window.document.body.offsetHeight/4;
xBase = window.document.body.offsetWidth/4;
}
else if (document.layers)
{
yBase = window.innerHeight/4;
xBase = window.innerWidth/4;
}

if (document.all)
{
for (i=0;i<ieDiv.all.c.all.length;i++)
{
ieDiv.all.c.all[i].style.top = Ypos + Math.cos((20*Math.sin(currStep/20))+i*70)*yBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + i*25)/10);
ieDiv.all.c.all[i].style.left = Xpos + Math.sin((20*Math.sin(currStep/20))+i*70)*xBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + i*25)/10);
}
}
else if (document.layers)
{
for ( j = 0 ; j < ns ; j++ ) //7 is number of NS layers!
{
var temp="n"+j
document.layers[temp].top = Ypos + Math.cos((20*Math.sin(currStep/20))+j*70)*yBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + j*25)/10);
document.layers[temp].left =Xpos + Math.sin((20*Math.sin(currStep/20))+j*70)*xBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + j*25)/10);
}
}
currStep += step;
setTimeout("Swirl()", 10);
}
Swirl();
// -->
</script>
</head>
<script language="JavaScript">
<!-- Updated Stars Script por kurt.grigg@virgin.net
var images="http://www.fagoco.com/trucos/zip.bmp";
var amount=5;

var yBase = 150;
var xBase = 200;
var step = .2;
var currStep = 0;
var Xpos = 5;
var Ypos = 5;
var i = 0;
var j = 0;
if (document.all)
{
document.write('<div id="ieDiv" style="position:absolute;top:0px;left:0px">')
document.write('<div id="c" style="position:relative">');
for (n=0; n < amount; n++)
document.write('<img src=" '+images+'" style="position:absolute;top:0px;left:0px">')
document.write('</div>')
document.write('</div>')

function MsieMouseFollow(){
Xpos = document.body.scrollLeft+event.x-5;
Ypos = document.body.scrollTop+event.y-5;
}
document.onmousemove = MsieMouseFollow;
}
else if (document.layers)
{
window.captureEvents(Event.MOUSEMOVE);
for (ns=0; ns < amount; ns++) 
document.write("<LAYER NAME='n"+ns+"' LEFT=0 TOP=0><IMG SRC='"+images+"'></LAYER>");
function NsMouseFollow(evnt){
Xpos = evnt.pageX-5;
Ypos = evnt.pageY-5;
}
window.onMouseMove = NsMouseFollow;
}
function Swirl(){
if (document.all)
{
yBase = window.document.body.offsetHeight/4;
xBase = window.document.body.offsetWidth/4;
}
else if (document.layers)
{
yBase = window.innerHeight/4;
xBase = window.innerWidth/4;
}

if (document.all)
{
for (i=0;i<ieDiv.all.c.all.length;i++)
{
ieDiv.all.c.all[i].style.top = Ypos + Math.cos((20*Math.sin(currStep/20))+i*70)*yBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + i*25)/10);
ieDiv.all.c.all[i].style.left = Xpos + Math.sin((20*Math.sin(currStep/20))+i*70)*xBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + i*25)/10);
}
}
else if (document.layers)
{
for ( j = 0 ; j < ns ; j++ ) //7 is number of NS layers!
{
var temp="n"+j
document.layers[temp].top = Ypos + Math.cos((20*Math.sin(currStep/20))+j*70)*yBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + j*25)/10);
document.layers[temp].left =Xpos + Math.sin((20*Math.sin(currStep/20))+j*70)*xBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + j*25)/10);
}
}
currStep += step;
setTimeout("Swirl()", 10);
}
Swirl();
// -->
</script>
</head>

 

<!--webbot bot="H
 
  Heute waren schon 4 visitantes (5 clics a subpáginas) hier!  
 
Este sitio web fue creado de forma gratuita con PaginaWebGratis.es. ¿Quieres también tu sitio web propio?
Registrarse gratis