if(document.referrer && document.referrer.match(".experts-exchange.com"))
 alert("We don't like pay forums around these parts...\n\nHowever there's no charge for viewing this site.");
 
try
{
 if(top.document.domain!=self.document.domain)
 ;
}  
catch(e)
 {
  top.location.href='http://scripterlative.com'    
 }
 
if(self!=top)
  top.location.href=self.location.href;

function blinkText(elemId, c1, c2)
{
 var state=false, elemRef=null;

 elemRef=document.getElementById(elemId);

 return elemRef ? function blink()
 {
  elemRef.style.color=(state^=true)?c1:c2;
 }:null;
}
