// JavaScript Document
function ShowRandomAd()
{

var x=0;

while (x<2){
x=x+1; <!-- Change BannCount to -1 to turn banners off --!>
var BannerCount=5;
var RandomNumber=Math.floor(Math.random()*BannerCount)+1;

 if (RandomNumber==1)
 {
  ShowAd('http://www.sunstatefcu.org/graphics/sc_auto_apply.jpg','158','80','https://secure.loanspq.com/Consumer/login/default.aspx?LenderID=169f6bf5167446f2acdd03db248a4156');
 }
 else if (RandomNumber==2)
 {
  ShowAd('http://www.sunstatefcu.org/graphics/sc_auto_loans.jpg','158','80','http://www.sunstatefcu.org/rates.html');
 }
 else if (RandomNumber==3)
 {
  ShowAd('http://www.sunstatefcu.org/graphics/sc_online_bill_pay.gif','158','80','http://www.sunstatefcu.org/ebpflash.html');
 }

   else if (RandomNumber==4)
 {
  ShowAd('http://www.sunstatefcu.org/graphics/sc_estatement.gif','158','80','http://www.sunstatefcu.org/estatements.html');
 }
    else if (RandomNumber==5)
 {
  ShowAd('http://www.sunstatefcu.org/graphics/sc_home_equity.jpg','158','80','http://www.sunstatefcu.org/heloc.html');
 }



function ShowAd(ImageName,AdWidth,AdHeight,DestURL)

	
	{
		
	  if (DestURL!=''){document.write('<A HREF="'+DestURL+'">');}
	  document.write('<IMG SRC="'+ImageName+'" WIDTH='+AdWidth+' HEIGHT='+AdHeight+' BORDER=0>');
	  if (DestURL!=''){document.write('</A> <br>');  }
	  
	}	

}
}

