Google no se deja meter dentro de un iframe ;)
Código Javascript
:
Ver original<html>
<script language="JavaScript">
function activarweb( ) {
var testFrame = document.createElement("IFRAME");
testFrame.id = "testFrame";
testFrame.src = "http://www.forosdelweb.com";
testFrame.style.height = "100%";
testFrame.style.width = "100%";
document.body.appendChild(testFrame);
}
</script>
</head>
<body>
<p><input type="button" name="Submit" value="cargar" onclick="activarweb()"/></p>
</body>
</html>
ForosDelWeb si