|
ive got this little script but need help where vote 1,2,3 buttons is i want to put banners or html code
<html>
<head>
<title>Force Voting Script</title>
<script>
t = 10000;
function timer1(){
setTimeout('adview.submit2.disabled = false' , t)
}
function vote1(){
window.open('http://vote1')
}
t = 10000;
function timer2(){
setTimeout('adview.submit3.disabled = false' , t)
}
function vote2(){
window.open('http://vote2')
}
t = 10000;
function timer3(){
setTimeout('adview.submit5.disabled = false' , t)
}
function vote3(){
window.open('http://vote3')
}
function vote5(){
vote = (unescape(''));
self.location = vote + 'http://download?';
}
</script>
</head>
<body bgcolor="black" text="white" link="lime" vlink="lime" alink="lime">
<p><font face="Impact"><span style="font-size:20pt;">Please </span></font><font face="Impact" color="red"><span style="font-size:20pt;">VOTE</span></font><font face="Impact"><span style="font-size:20pt;"> before Downloading</span></font><HR color=#394146 SIZE=1 width="50%" align="left">
<b><span class="TEXT_main-bold">Click
on "VOTE 1"<font color="#FF0000"><br></font></span></b><font face="Arial, Helvetica, sans-serif" size="2"><input type=button name="submit1" value=" VOTE 1 " onClick="timer1();vote1()" style="font-family: verdana; font-size: 10px; color: #000000">
<br>
</font>
<form name="adview">
<p><font face="Arial, Helvetica, sans-serif" size="2"> </font><b><span class="TEXT_main-bold">Click
on "VOTE 2"<font color="#FF0000"><br></font></span></b><font face="Arial, Helvetica, sans-serif" size="2"><input type=button name="submit2" value=" VOTE 2 " DISABLED onClick="timer2();vote2()" style="font-family: verdana; font-size: 10px; color: #000000">
<br>
</font></p>
<p><font face="Arial, Helvetica, sans-serif" size="2"> </font><b><span class="TEXT_main-bold">Click
on "VOTE 3"<font color="#FF0000"><br></font></span></b><font face="Arial, Helvetica, sans-serif" size="2"><input type=button name="submit3" value=" VOTE 3 " DISABLED onClick="timer3();vote3()" style="font-family: verdana; font-size: 10px; color: #000000">
<br>
</font> <HR color=#394146 SIZE=1 width="50%" align="left">
<p><font face="Arial, Helvetica, sans-serif" size="2">
<input style="FONT-WEIGHT: bold; FONT-SIZE: 10px; COLOR: #000000; FONT-FAMILY: verdana" disabled onClick=vote5() type=button value="DOWNLOAD NOW!" name=submit5>
</font></p>
</form>
</body>
</html>
|