Sin título html> <head> <title> XXX </title> <script language="javascript"> function calvidcen() { if (video.e1.checked==true) {n1=25;} else {n1=0;} if (video.e2.checked==true) {n2=25;} else {n2=0;} if (video.e3.checked==true) {n3=25;} else {n3=0;} if (video.l1.checked==true) {n4=20;} else {n4=0;} if (video.l2.checked==true) {n5=20;} else {n5=0;} if (video.l3.checked==true) {n6=20;} else {n6=0;} if (video.c1.checked==true) {n7=15;} else {n7=0;} if (video.c2.checked==true) {n8=15;} else {n8=0;} if (video.c3.checked==true) {n9=15;} else {n9=0;} subtotal=n1+n2+n3+n4+n5+n6+n7+n8+n9; if(video.f[0].checked==true) {m1=1;} else {m1=0;} if(video.f[1].checked==true) {m2=1.2;} else {m2=0;} if(video.f[2].checked==true) {m3=1.5;} else {m3=0;} aumen=m1+m2+m3; dias=parseInt(video.dr.value); rep=parseInt(video.rp.value); total=((subtotal*aumen)*dias)+rep; alert("Total a pagar por Peliculas es de : "+ total); } </script> Página 1 Sin título </head> <body> <form name="video"> <hr size=5 color="red"> <marquee BGCOLOR="blue"><font color="white" size=6 face="arial black"> VIDEO CLUB </font></marquee> <hr size=5 color="silver"> <center> <table width=90% bgcolor="SKYBLUE"> <tr> <td width=33%> <br> <b>PELICULAS</b> <BR> <HR> <BR> <U>ESTRENOS (25.00 C/U)</U> <BR> <INPUT type="checkbox" name=e1> GRAVEDAD <BR> <INPUT type="checkbox" name=e2> CARRIE <BR> <INPUT type="checkbox" name=e3> HOBBIT 2 <BR> <BR> <U>LAS MAS VISTAS (20.00 C/U)</U> <BR> <INPUT type="checkbox" name=l1> IRON MAN<BR> <INPUT type="checkbox" name=l2> SUPERMAN <BR> <INPUT type="checkbox" name=l3> AVENGERS <BR> <BR> <U>CATALOGO (15.00 C/U)</U> <BR> <INPUT type="checkbox" name=c1> TITANIC <BR> <INPUT type="checkbox" name=c2> STAR WARS<BR> Página 2 Sin título <INPUT type="checkbox" name=c3> EL PADRINO <BR> <BR> </TD> <td width=33%> <br> <b>PELICULAS</b> <BR> <HR> <BR> Dias de Renta: <INPUT type="text" name=dr value=0> <br> <hr> <U>FORMATO</U> <BR> <INPUT type="radio" name=f>VHS +0%<BR> <INPUT type="radio" name=f> DVD +20%<BR> <INPUT type="radio" name=f> BLURAY +50%<BR> <BR> <HR> <U>RENTA DE REPRODUCTOR</U> <BR> <select name="rp"> <option value=0> NINGUNO +0.00</option> <option value=50> VHS +50.00</option> <option value=100> DVD +100.00</option> <option value=250> BLURAY +250.00</option> </select> <BR> </TD> <td width=33%> <br> <b>VIDEO JUEGOS</b> <BR> Página 3 Sin título <HR> Dias de Renta VideoJuegos: <INPUT type="text" name=drvj> <hr> <U>TIPO DE CONSOLA</U> <BR> <INPUT type="radio" name=tc> XBOX 60.00<BR> <INPUT type="radio" name=tc> PS3 80.00<BR> <INPUT type="radio" name=tc> WII 50.00<BR> <BR> <HR> <U>TITULOS </U> <BR> <INPUT type="checkbox" name=vj1> TITANIC <BR> <INPUT type="checkbox" name=vj2> STAR WARS<BR> <INPUT type="checkbox" name=vj3> EL PADRINO <BR> <INPUT type="checkbox" name=vj4> TITANIC <BR> <BR> <HR> <U>RENTA DE CONSOLA</U> <BR> <select name="rc"> <option value=0> NINGUNO </option> <option value=200> WII </option> <option value=300> XBOX </option> <option value=400> PS3 </option> </select> <BR> <hr> <input type="button" value="Calcular" onclick="calvidcen();"> </TD> </form> Página 4 Sin título </body> </html> Página 5