<!--
var hopPgs = new Array();
hopPgs[0] = "hopups/hopup_carfinder.htm";
hopPgs[1] = "hopups/hopup_newcarquote.htm";
hopPgs[2] = "hopups/hopup_holidaydiscount.htm";
//hopPgs[3] = "hopups/hopup_myhopper.htm";

function getPage(bFromRoot)
{
	var s = Math.floor(Math.random()*hopPgs.length);
	if ((bFromRoot!=null) && bFromRoot){return hopPgs[s];}
	else{return "../" + hopPgs[s];}
}	
function loadHopUp(sCookie, bFromRoot)
{
	if(showHopUp(sCookie)){openPopup(getPage(bFromRoot), 250, 250);}
}
function showHopUp(sCookie)
{
	if(getCookie(sCookie)!="1"){setCookie(sCookie, "1", 2);	return true;}
	else{return false;}
}
//--> 