/*
The name of the keys in the numcode array are what the query values are:

if the referrer is index.php?HjkVGR4i=c1 then it returns 888-302-7637
if the referrer is index.php?HjkVGR4i=c2 then it returns 888-321-9532
else it defaults to 888-520-1700

*** YOU CANNOT CHANGE "dflt" as this is the number that ***
*** displays when there's not query, or an invalid query. ***
*/
var numcode		=	new Array(3);	// set to the size that we're defining
numcode["c1"]	=	"888-302-7637";	// 1...
numcode["c2"]	=	"888-321-9532";	// 2...
numcode["dflt"]	=	"888-520-1700";	// 3...

// set domain to the root domain of the website
domain			=	"mirasol.net";

/*
the first argument is the query to search for,
and the second argument is the cookie's name.
*/
phoneNum		=	miraNum("HjkVGR4i", "miraNum");
