Ah, well that's simple enough -Ileia wrote:Yeah, I think he needs 8 or 9,000.BasharOfTheAges wrote:How's that work exactly? Total hit numbers?Ileia wrote:http://www.boochsack.com/watch?v=GSn9nlZC8kM
Everyone watch metro's video so that he can win five grand.
Code: Select all
<html>
<script>
var arrURL=new Array("http://www.youtube.com/watch?v=GSn9nlZC8kM");
var curIndex=0;
var timer=0;
var refreshRate=6; //seconds
function ChangeFrame()
{
clearTimeout(timer);
var url=arrURL[curIndex];
window.open(url, "Frame1");
window.open(url, "Frame2");
window.open(url, "Frame3");
window.open(url, "Frame4");
curIndex = ((curIndex+1)%arrURL.length);
timer = setTimeout("ChangeFrame()", refreshRate*1000);
}
</script>
<iframe></iframe>
<iframe></iframe>
<iframe></iframe>
<iframe></iframe>
<input>
</html>