
var quotes = [
{
quote:"8 Billion searches a month in the United States.*",
msg: "Get your business found, contact us now.",
source:"*MediaMetrix"
},
{
quote:"Consumers spend 41% of their time online.*",
msg:"Be sure your business is found.  Let us help.",
source:"*eMarketer"
},
{
quote:"61% of online consumers use search engines on a daily basis.*",
msg:"Will they find your business?  We can help.",
source:"*Jupiter Research"
},
{
quote:"The number of search queries will grow 32.5% by 2010.*",
msg:"Will your business be in the results?  Contact us.",
source:"*JP Morgan"
},
{
quote:"Local paid search advertising spending will grow 54%.*",
msg:"Because it works!  We can make it work for you.",
source:"*Kelsey Group"
}
]

var getQuote = function() {
  var idx = Math.ceil( quotes.length  *Math.random()) -1;
  document.getElementById("quote").innerHTML = quotes[idx].quote;
  document.getElementById("msg").innerHTML = quotes[idx].msg;
  document.getElementById("source").innerHTML = quotes[idx].source;  
}

window.onload=function(){
  getQuote();  
}

function OpenWinClientLogin(page) {
	var newwin = window.open (page, "NewWin", "height=675,width=995,top=20,left=20,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0", "Target");
	newwin.focus();	
}


