Nuevas NORMAS para el foro
Bienvenido(a),
Visitante
. Favor de
ingresar
o
registrarse
.
¿Perdiste tu
email de activación?
- Agosto 20, 2008, 09:28:18
Boton Buscar
Visita:
Articulos
-
Juegos Gratis
-
Da Foros
Comunidad Underground Hispana
|
Programacion
|
Programacion para webmasters
|
Java - Java Script
| Tema:
0 Usuarios y 1 Visitante están viendo este tema.
« anterior
próximo »
Páginas:
1
[
2
]
Autor
Tema: (Leído 4982 veces)
vassily
Visitante
Texto que va apareciendo
«
Respuesta #25 en:
Abril 27, 2005, 12:57:16 »
Para poner un texto que vaya apareciendo (Ej abajo) en tu web tienes que poner lo siguiente:
<form name="form1" method="get">
<p align="left"> <input type="text" name="scrolltext1" value="Este es el texto que va apareciendo"
size="40"></p>
</form>
En línea
vassily
Visitante
«
Respuesta #26 en:
Abril 27, 2005, 12:58:26 »
En línea
/nick Troyano
Visitante
«
Respuesta #27 en:
Mayo 02, 2005, 02:36:46 »
por si acaso no tienes para poder hacer o tener un shout box?
En línea
neok
Visitante
«
Respuesta #28 en:
ſeptiembre 23, 2005, 09:25:42 »
yo tb voy a aportar algo
esto es para k salga un texto al lado de la flexa
<STYLE>.spanstyle {
COLOR: red; FONT-FAMILY: Verdana; FONT-SIZE: 10pt; FONT-WEIGHT: bold; POSITION: absolute; TOP: -50px; VISIBILITY: visible
}
</STYLE>
<SCRIPT>
var x,y
var step=20
var flag=0
var message="aki pon lo kieras "
message=message.split("")
var xpos=new Array()
for (i=0;i<=message.length-1;i++) {
xpos
=-50
}
var ypos=new Array()
for (i=0;i<=message.length-1;i++) {
ypos
=-50
}
function handlerMM(e){
x = (document.layers) ? e.pageX : document.body.scrollLeft+event.clientX
y = (document.layers) ? e.pageY : document.body.scrollTop+event.clientY
flag=1
}
function makesnake() {
if (flag==1 && document.all) {
for (i=message.length-1; i>=1; i--) {
xpos
=xpos[i-1]+step
ypos
=ypos[i-1]
}
xpos[0]=x+step
ypos[0]=y
for (i=0; i<message.length-1; i++) {
var thisspan = eval("span"+(i)+".style")
thisspan.posLeft=xpos
thisspan.posTop=ypos
}
}
else if (flag==1 && document.layers) {
for (i=message.length-1; i>=1; i--) {
xpos
=xpos[i-1]+step
ypos
=ypos[i-1]
}
xpos[0]=x+step
ypos[0]=y
for (i=0; i<message.length-1; i++) {
var thisspan = eval("document.span"+i)
thisspan.left=xpos
thisspan.top=ypos
}
}
var timer=setTimeout("makesnake()",30)
}
</SCRIPT>
<META content="MSHTML 5.00.2614.3500" name=GENERATOR></HEAD>
<BODY bgColor=#ffffff onload=makesnake()
style="OVERFLOW-X: hidden; OVERFLOW-Y: scroll; WIDTH: 100%" text=#000000>
<SCRIPT>
for (i=0;i<=message.length-1;i++) {
document.write("<span id='span"+i+"' class='spanstyle'>")
document.write(message
)
document.write("</span>")
}
if (document.layers){
document.captureEvents(Event.MOUSEMOVE);
}
document.onmousemove = handlerMM;
</SCRIPT>
</BODY>
</HTML>
En línea
neok
Visitante
«
Respuesta #29 en:
ſeptiembre 23, 2005, 09:30:09 »
este otro es para cambiar el color de la barra de desplazamiento
<html>
<head>
<title>Untitled Document</title>
<style type="text/css">
BODY {
scrollbar-face-color: #000000;
scrollbar-shadow-color: #ffffff;
scrollbar-highlight-color: #fffff;
scrollbar-3dlight-color: #000000;
scrollbar-darkshadow-color: #ffffff;
scrollbar-track-color: #000000;
scrollbar-arrow-color: #FFFFFF;
}
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<p>a</p>
<p>b</p>
<p>c</p>
<p>d</p>
<p>e</p>
<p>f</p>
<p>g</p>
<p>h</p>
<p>i</p>
<p>j</p>
<p>k</p>
<p>l</p>
<p>m</p>
<p>n</p>
<p>ñ</p>
<p>o</p>
<p>p</p>
<p>q rst</p>
</body>
</html>
«
Última modificación: ſeptiembre 23, 2005, 09:38:18 por neok
»
En línea
neok
Visitante
«
Respuesta #30 en:
ſeptiembre 23, 2005, 09:41:33 »
aki otro amigos
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<script language="JavaScript">
<!-- Comienzo
mensaje = "Letrero de Prueba";
color1 = "blue"; //
color2 = "red"; //
fuente = "8"; //
velocidad = 100; //
i = 0;
if (navigator.appName == "Netscape") {
document.write("<layer id=a visibility=show></layer><br><br><br>");
}
else {
document.write("<div id=a></div>");
}
function CambiarColor() {
if (navigator.appName == "Netscape") {
document.a.document.write("<center><font size =" + fuente + "><font color=" + color1 + ">");
for (var j = 0; j < mensaje.length; j++) {
if(j == i) {
document.a.document.write("<font color=" + color2 + ">" + mensaje.charAt(i) + "</font>");
}
else {
document.a.document.write(mensaje.charAt(j));
}
}
document.a.document.write('</font></font></center>');
document.a.document.close();
}
if (navigator.appName == "Microsoft Internet Explorer") {
str = "<center><font size=" + fuente + "><font color=" + color1 + ">";
for (var j = 0; j < mensaje.length; j++) {
if( j == i) {
str += "<font color=" + color2 + ">" + mensaje.charAt(i) + "</font>";
}
else {
str += mensaje.charAt(j);
}
}
str += "</font></font></center>";
a.innerHTML = str;
}
(i == mensaje.length) ? i=0 : i++;
}
setInterval("CambiarColor()", velocidad);
// End -->
</script>
<body bgcolor="#FFFFFF" text="#000000">
</body>
</html>
En línea
neok
Visitante
«
Respuesta #31 en:
ſeptiembre 23, 2005, 09:48:15 »
En línea
neok
Visitante
«
Respuesta #32 en:
ſeptiembre 23, 2005, 09:54:25 »
este es para k salga un reloj al lado de la fletxa
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 5.50.4616.200" name=GENERATOR></HEAD>
<BODY>
<script language="JavaScript">
dCol='000000';//date colour.
fCol='000000';//face colour.
sCol='000000';//seconds colour.
mCol='000000';//minutes colour.
hCol='000000';//hours colour.
ClockHeight=40;
ClockWidth=40;
ClockFromMouseY=0;
ClockFromMouseX=100;
//Alter nothing below! Alignments will be lost!
d=new Array("DOMINGO","LUNES","MARTES","MIERCOLES","JUEVES","VIERNES","SABADO");
m=new Array("ENERO","FEBRERO","MARZO","ABRIL","MAYO","JUNIO","JULIO","AGOSTO","SEPTIEMBRE","OCTUBRE","NOVIEMBRE","DICIEMBRE");
date=new Date();
day=date.getDate();
year=date.getYear();
if (year < 2000) year=year+1900;
TodaysDate=" "+d[date.getDay()]+" "+day+" "+m[date.getMonth()]+" "+year;
D=TodaysDate.split('');
H='...';
H=H.split('');
M='....';
M=M.split('');
S='.....';
S=S.split('');
Face='1 2 3 4 5 6 7 8 9 10 11 12';
font='Arial';
size=1;
speed=0.6;
ns=(document.layers);
ie=(document.all);
Face=Face.split(' ');
n=Face.length;
a=size*10;
ymouse=0;
xmouse=0;
scrll=0;
props="<font face="+font+" size="+size+" color="+fCol+"><B>";
props2="<font face="+font+" size="+size+" color="+dCol+"><B>";
Split=360/n;
Dsplit=360/D.length;
HandHeight=ClockHeight/4.5
HandWidth=ClockWidth/4.5
HandY=-7;
HandX=-2.5;
scrll=0;
step=0.06;
currStep=0;
y=new Array();x=new Array();Y=new Array();X=new Array();
for (i=0; i < n; i++){y
=0;x
=0;Y
=0;X
=0}
Dy=new Array();Dx=new Array();DY=new Array();DX=new Array();
for (i=0; i < D.length; i++){Dy
=0;Dx
=0;DY
=0;DX
=0}
if (ns){
for (i=0; i < D.length; i++)
document.write('<layer name="nsDate'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+props2+D
+'</font></center></layer>');
for (i=0; i < n; i++)
document.write('<layer name="nsFace'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+props+Face
+'</font></center></layer>');
for (i=0; i < S.length; i++)
document.write('<layer name=nsSeconds'+i+' top=0 left=0 width=15 height=15><font face=Arial size=3 color='+sCol+'><center><b>'+S
+'</b></center></font></layer>');
for (i=0; i < M.length; i++)
document.write('<layer name=nsMinutes'+i+' top=0 left=0 width=15 height=15><font face=Arial size=3 color='+mCol+'><center><b>'+M
+'</b></center></font></layer>');
for (i=0; i < H.length; i++)
document.write('<layer name=nsHours'+i+' top=0 left=0 width=15 height=15><font face=Arial size=3 color='+hCol+'><center><b>'+H
+'</b></center></font></layer>');
}
if (ie){
document.write('<div id="Od" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i=0; i < D.length; i++)
document.write('<div id="ieDate" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+props2+D
+'</B></font></div>');
document.write('</div></div>');
document.write('<div id="Of" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i=0; i < n; i++)
document.write('<div id="ieFace" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+props+Face
+'</B></font></div>');
document.write('</div></div>');
document.write('<div id="Oh" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i=0; i < H.length; i++)
document.write('<div id="ieHours" style="position:absolute;width:16px;height:16px;font-family:Arial;font-size:16px;color:'+hCol+';text-align:center;font-weight:bold">'+H
+'</div>');
document.write('</div></div>');
document.write('<div id="Om" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i=0; i < M.length; i++)
document.write('<div id="ieMinutes" style="position:absolute;width:16px;height:16px;font-family:Arial;font-size:16px;color:'+mCol+';text-align:center;font-weight:bold">'+M
+'</div>');
document.write('</div></div>')
document.write('<div id="Os" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i=0; i < S.length; i++)
document.write('<div id="ieSeconds" style="position:absolute;width:16px;height:16px;font-family:Arial;font-size:16px;color:'+sCol+';text-align:center;font-weight:bold">'+S
+'</div>');
document.write('</div></div>')
}
(ns)?window.captureEvents(Event.MOUSEMOVE):0;
function Mouse(evnt){
ymouse = (ns)?evnt.pageY+ClockFromMouseY-(window.pageYOffset):event.y+ClockFromMouseY;
xmouse = (ns)?evnt.pageX+ClockFromMouseX:event.x+ClockFromMouseX;
}
(ns)?window.onMouseMove=Mouse:document.onmousemove=Mouse;
function ClockAndAssign(){
time = new Date ();
secs = time.getSeconds();
sec = -1.57 + Math.PI * secs/30;
mins = time.getMinutes();
min = -1.57 + Math.PI * mins/30;
hr = time.getHours();
hrs = -1.575 + Math.PI * hr/6+Math.PI*parseInt(time.getMinutes())/360;
if (ie){
Od.style.top=window.document.body.scrollTop;
Of.style.top=window.document.body.scrollTop;
Oh.style.top=window.document.body.scrollTop;
Om.style.top=window.document.body.scrollTop;
Os.style.top=window.document.body.scrollTop;
}
for (i=0; i < n; i++){
var F=(ns)?document.layers['nsFace'+i]:ieFace
.style;
F.top=y
+ ClockHeight*Math.sin(-1.0471 + i*Split*Math.PI/180)+scrll;
F.left=x
+ ClockWidth*Math.cos(-1.0471 + i*Split*Math.PI/180);
}
for (i=0; i < H.length; i++){
var HL=(ns)?document.layers['nsHours'+i]:ieHours
.style;
HL.top=y
+HandY+(i*HandHeight)*Math.sin(hrs)+scrll;
HL.left=x
+HandX+(i*HandWidth)*Math.cos(hrs);
}
for (i=0; i < M.length; i++){
var ML=(ns)?document.layers['nsMinutes'+i]:ieMinutes
.style;
ML.top=y
+HandY+(i*HandHeight)*Math.sin(min)+scrll;
ML.left=x
+HandX+(i*HandWidth)*Math.cos(min);
}
for (i=0; i < S.length; i++){
var SL=(ns)?document.layers['nsSeconds'+i]:ieSeconds
.style;
SL.top=y
+HandY+(i*HandHeight)*Math.sin(sec)+scrll;
SL.left=x
+HandX+(i*HandWidth)*Math.cos(sec);
}
for (i=0; i < D.length; i++){
var DL=(ns)?document.layers['nsDate'+i]:ieDate
.style;
DL.top=Dy
+ ClockHeight*1.5*Math.sin(currStep+i*Dsplit*Math.PI/180)+scrll;
DL.left=Dx
+ ClockWidth*1.5*Math.cos(currStep+i*Dsplit*Math.PI/180);
}
currStep-=step;
}
function Delay(){
scrll=(ns)?window.pageYOffset:0;
Dy[0]=Math.round(DY[0]+=((ymouse)-DY[0])*speed);
Dx[0]=Math.round(DX[0]+=((xmouse)-DX[0])*speed);
for (i=1; i < D.length; i++){
Dy
=Math.round(DY
+=(Dy[i-1]-DY
)*speed);
Dx
=Math.round(DX
+=(Dx[i-1]-DX
)*speed);
}
y[0]=Math.round(Y[0]+=((ymouse)-Y[0])*speed);
x[0]=Math.round(X[0]+=((xmouse)-X[0])*speed);
for (i=1; i < n; i++){
y
=Math.round(Y
+=(y[i-1]-Y
)*speed);
x
=Math.round(X
+=(x[i-1]-X
)*speed);
}
ClockAndAssign();
setTimeout('Delay()',20);
}
if (ns||ie)window.onload=Delay;
</script>
<bR><bR><bR><bR><bR>
<bR><bR><bR><bR>
</BODY></HTML>
En línea
RexMaster
Gran Colaborador
Desconectado
Mensajes: 1209
AM, CM, MM
«
Respuesta #33 en:
ſeptiembre 23, 2005, 10:44:26 »
En línea
- :. RexMaster .: -
Como poner mi diseño de firma en mis posts
neok
Visitante
«
Respuesta #34 en:
ſeptiembre 23, 2005, 10:59:08 »
este es para k el navegador se mueva
<form>
<p><input TYPE="button" VALUE="Mover Ventana" onClick="makeAd()"></p>
</form>
<script LANGUAGE="JavaScript">
<!--
function startAd() {
if (window.screen) {
pos = 0;
aw = screen.availWidth;
window.moveTo(pos, 0);
timerID = setInterval("moveAd()", 50);
}
}
function moveAd() {
if (pos <= 0) inc = 5;
if (pos + 468 + 10 + 5 > aw) inc = -5;
pos += inc;
window.moveTo(pos, 0);
}
window.onload = startAd;
// -->
</script>
En línea
neok
Visitante
«
Respuesta #35 en:
ſeptiembre 23, 2005, 11:30:29 »
aki otro este permite canbiar el color de fondo
<html>
<head>
<title> Color de fondo </title>
</head>
<body bgcolor="#FFFFFF">
<SCRIPT language="JavaScript">
<!--
function get_color(color_num)
{
var now_color=color_num;
var my_color= new Array(5)
my_color[0]="lime";
my_color[1]="orange";
my_color[2]="lightblue";
my_color[3]="pink";
my_color[4]="ghostwhite";
document.bgColor=my_color[now_color];
}
//-->
</SCRIPT>
<P>
<B>Cambiar el color de fondo!</B>
<P>
<FORM>
<INPUT type="button" value="Lima" onClick="get_color(0)">
<INPUT type="button" value="Naranja" onClick="get_color(1)">
<INPUT type="button" value="Celeste" onClick="get_color(2)">
<INPUT type="button" value="Rosa" onClick="get_color(3)">
<INPUT type="button" value="Blanco" onClick="get_color(4)">
</FORM>
</body>
</html>
En línea
neok
Visitante
«
Respuesta #36 en:
ſeptiembre 23, 2005, 11:38:21 »
esto hay k verlo
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="GENERATOR" CONTENT="Mozilla/4.03 [es] (WinNT; I) [Netscape]">
<!--
-->
</HEAD>
<BODY BGCOLOR="#FFFFFF" scroll="no">
<SCRIPT>
<!-- // Hide
var isDOM = false, isNS4 = false;
if (document.all) var isDOM = true, docObj = 'document.all.', styObj = '.style';
else if (document.layers) var isNS4 = true, docObj = 'document.', styObj = '';
var quotes = new Array(); c = 0;
quotes[c] = 'bla'; c++;
quotes[c] = 'bla'; c++;
quotes[c] = 'bla'; c++;
quotes[c] = 'bla'; c++;
quotes[c] = 'bla!'; c++;
quotes[c] = 'bla'; c++;
quotes[c] = 'bla'; c++;
quotes[c] = 'bla'; c++;
quotes[c] = 'bla'; c++;
quotes[c] = 'bla'; c++;
quotes[c] = 'bla'; c++;
quotes[c] = 'bla'; c++;
quotes[c] = 'bla'; c++;
quotes[c] = 'bla'; c++;
quotes[c] = 'bla'; c++;
quotes[c] = 'blaa'; c++;
quotes[c] = 'bla'; c++;
quotes[c] = 'bla'; c++;
var visQuotes = 10; // Maximum onscreen at once.
var sDivSty = new Array(visQuotes);
var sDivRef = new Array(visQuotes);
var speed = new Array(visQuotes);
// Left: Low speed colours (lighter) .... Right: High speed colours (darker).
var colours = new Array('B2C7DE','A4BCD8','96B2D2','88A8CC','7A9EC6','6C94C0','5E89BA');
function checkDivs()
{
for (i = 0; i < visQuotes; i++)
{
// If it's moved offscreen to the left (or starting), set things in motion...
if (parseInt(sDivSty
.left) < (0 - (isDOM ? sDivRef
.clientWidth : sDivSty
.clip.width)))
{
speed
= Math.floor(Math.random() * 56) + 8; // Varies: 8 to 63.
// Off to the right it goes.
sDivSty
.left = (isDOM ? document.body.clientWidth : window.innerWidth) + Math.random() * 50;
// Write a quote in a colour that depends on the speed.
/* Stylesheets - guess which browser has bugs
*
* divText = '<nobr><span style="font: ' + speed
+ 'px Arial, Helvetica; ' +
* 'color: #' + colours[Math.floor(speed
/
- 1] + '">' +
* quotes[Math.floor(Math.random() * quotes.length)] + '</span></nobr>';
*/
fontSize = Math.floor(speed
/
- 1;
divText = '<nobr><font face="Arial, Helvetica" size="' + fontSize + '" color="#' +
colours[fontSize] + '">' + quotes[Math.floor(Math.random() * quotes.length)] +
'</font></nobr>';
if (isDOM) sDivRef
.innerHTML = divText;
if (isNS4)
{
sDivRef
.document.write(divText);
sDivRef
.document.close();
}
// Position and layer it according to its speed (faster = higher).
sDivSty
.zIndex = speed
;
topMax = (isDOM ? document.body.clientHeight : innerHeight) - speed
;
sDivSty
.top = topMax * Math.random();
}
// All items: Keep 'em moving left.
sDivSty
.left = parseInt(sDivSty
.left) - (speed
/ 4);
}
}
function initDivs()
{
for (i = 0; i < visQuotes; i++)
{
divID = 'sDiv' + i.toString();
if (isDOM) document.write('<div id="' + divID + '" style="position: absolute; left: -1000"> </div>');
// Have to use layers, divs are buggy as..... in NS. Again.
if (isNS4) document.write('<layer id="' + divID + '" left="-1000"> </layer>');
sDivRef
= eval(docObj + 'sDiv' + i);
sDivSty
= eval(docObj + 'sDiv' + i + styObj);
}
setInterval('checkDivs()', 50);
}
if (isDOM || isNS4) initDivs();
// End Hide -->
</SCRIPT>
<DIV id="mainText" style="position: absolute; left: 100; top: 200; z-index: 100">
<H1>
'Ello 'ello 'ello what 'ave we 'ere then?</H1>
<P>pon lo k kieras
<BR> bla bla blablabla
<BR> ESTO ES UNA
PRUBA
<P>pon lo k kieras
<BR>pon lo k kieras XD</DIV>
</BODY>
</HTML>
En línea
pablo_kto
Visitante
«
Respuesta #37 en:
Noviembre 24, 2005, 03:05:51 »
En línea
geob234
Habitual
Desconectado
Mensajes: 163
«
Respuesta #38 en:
Abril 09, 2006, 02:53:39 »
En línea
Páginas:
1
[
2
]
Comunidad Underground Hispana
|
Programacion
|
Programacion para webmasters
|
Java - Java Script
| Tema:
« anterior
próximo »
Ir a:
Por favor selecciona un destino:
-----------------------------
Foros De Consulta General
-----------------------------
=> Novedades
=> Dudas, Comentarios Y Sugerencias
=> Top 100
=> Off-Topic
=> Revista E-Zine
===> Noticias
-----------------------------
Phreaking, Hacking y Seguridad
-----------------------------
=> HacK GeneraL
===> Ingenieria Inversa
===> Encriptacion, Cryptografia
===> TV HACK
===> Seguridad
===> Cursos y Ezines
=====> Trucos Internet
=====> Textos Hacking
===> Defacing
=> Phreaking
===> Moviles
=> Bug y Exploits
-----------------------------
Hack Novato
-----------------------------
=> Hack para newbies
=> Todo Messenger
=> Troyanos y virus
-----------------------------
Sistemas Operativos
-----------------------------
=> Windows y otros sistemas operativos no libres
===> Problemas Tecnicos Windows
=> Sistemas operativos libres.
===> GNU/Linux
===> Manuales y Tutoriales
===> Descargas
-----------------------------
Programacion
-----------------------------
=> Programación
===> Programación Basica
===> Otros Lenguajes
===> Visual Basic y Net
===> ASM
===> Programacion Shell
===> Perl
===> Carbide C/C#/C++
===> Batch
===> SQL
=> Programacion para webmasters
===> Consultas
===> Php
===> Html
===> Java - Java Script
===> Php Nuke
===> Scripts Pre-Fabricados
===> Mysql
===> CSS y Diseño Web
-----------------------------
Artes Graficas
-----------------------------
=> Diseño Grafico
===> Battle Arts
===> Flash
===> Tutoriales
===> Galerías
===> Software
-----------------------------
Area Tecnica
-----------------------------
=> Networking & Wireless
=> Overclocking, Refrigeracion y demas
=> Hardware
===> Cursos Y manuales
=> Electronica Y Robotica
-----------------------------
Programas
-----------------------------
=> Software
===> Configuraciones de software
===> Pedidos de software
=> Cracks & Serialz
=> P2p, Bittorrent, Elinks
-----------------------------
Multimedia Y Divx
-----------------------------
=> Juegos PC Y Consolas
===> Dudas ayudas y comentarios de juegos
===> Pedidos de juegos
=> Mp3
=> Multimedia
=> Peliculas Divx
-----------------------------
Entretenimiento Y sitios de interes
-----------------------------
=> Juegos, Humor y Adultos. (Diversión)
===> Adultos
=> Paginas Webs Recomendadas
=> Videos
Powered by SMF 1.1.5
|
SMF © 2006-2007, Simple Machines LLC
Loading...