//  Script:	Auto-Voter 1.0
//  Author:	Jeremy Pyne
//  Date:	12/17/03

//  Description: This script will automatically send referrals to Web sites to constantly receive votes when the script is run.

//  Company:	Innovative Computing Solutions
//  Sales:	Eric Randle- eric_randle@yahoo.com
//  Technical:  Jeremy Pyne- pynej@softhome.net

//  Customer:	Charles Proctor


//*********Variables
Sites = new Array(
	"http://www.adult-fantasies.com/cgi-bin/rankem.cgi?action=in&id=medfet",
	"http://www.eroticexoticfun.com/cgi-bin/AutoRank/rankem.cgi?id=medfet"	
)
	//List of all Referrals to process.  Form:    "server URL",
LoopForever = "NO"	//YES = Continually run list, NO = Run list once
RefreshRate = 10	//How long to wait for each load in seconds
Counter = 0

//*********Functions
function vLoop()	//vLoop refreshed the hidden frame to the next site in Sites list
{
	SiteFrame.location.href = Sites[Counter]
	Counter = Counter + 1
	if (Counter <= Sites.length - 1) {setTimeout("vLoop()", 1000 * RefreshRate)}
	else {if (LoopForever == "YES") {Counter = 0; setTimeout("vLoop()", 1000 * RefreshRate)}}
}