Código HTML:
Ver original
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css"> <!-- .position { position: fixed; right: 0px; bottom: 0px; } .iframe { height: 100%; width: 100%; } body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; } --> </style> </head> <body> <iframe src="http://web.com/" class="iframe" scrolling="auto" frameborder="1" transparency> </iframe> <script type="text/javascript"> var ancho = 350; var alto = 280; function tama(pid){ ancho += 50; alto += 50; document.getElementById(pid).style.width = ancho+'px'; document.getElementById(pid).style.height = alto+'px'; } var ancho = 350; var alto = 280; function meta(pid){ ancho -= 50; alto -= 50; document.getElementById(pid).style.width = ancho+'px'; document.getElementById(pid).style.height = alto+'px'; } function abrir(pid){ if (document.getElementById(pid).style.display=="none"){document.getElementById(pid).style.display=""} else{document.getElementById(pid).style.display="none"} }</script> <table class="position" border="0"> <tr> </tr> <tr> </tr> </table> </body> </html>