
<!--
 //counter, to restrict consecutive hits to 30
 var c = 0; 

function swapBanner(pageName,newURL)
{

 //omniture tracking
 if (pageName) s_pageName=pageName;

 if ( c < 30 ) 
 {
  c++;
  s_gs(s_flash_rs_id);
 }

 //redirect to new page
 if(newURL != null) 
 {
  // alert(newURL);
  window.location = newURL;
 } 
}
//-->

