View Single Post
ישן 13-05-07, 12:50   # 12
Mg-maor
חבר מתקדם
 
מיני פרופיל
תאריך הצטרפות: Mar 2007
הודעות: 602

Mg-maor לא מחובר  

אז מה רע בזה:
ציטוט:
<html>

<head>


<title>
בלה בלה
</title>
<script language="javascript">
var rand = Math.floor(Math.random()*4) + 1;
var url;
switch (rand)
{
case 1: url = "http://google.com"; break;
case 2: url = "http://hosts.com"; break;

case 20: url = "gmail.com"; break;
default: url = "http://thisSite.com";
}

location.href = url;
</script>
</head>

</html>
  Reply With Quote