var refarray = new Array();
refarray['+italy'] = "http://www.bed-breakfast-italy.com";
refarray['+vicenza'] = "http://www.bed-breakfast-italy.com";
refarray['+corfu'] = "http://www.unicresorts.com";
refarray['+greece'] = "http://www.unicresorts.com";
refarray['+Italy'] = "http://www.bed-breakfast-italy.com";
refarray['+Vicenza'] = "http://www.bed-breakfast-italy.com";
refarray['+Corfu'] = "http://www.unicresorts.com";
refarray['+Greece'] = "http://www.unicresorts.com";
refarray['+jenny'] = "http://www.bed-breakfast-italy.com";
refarray['+bob'] = "http://www.bed-breakfast-italy.com";


if (document.referrer&&document.referrer!=""){
  for (var i in refarray) {
   strtmp = "macaco";
   strtmp = i.slice(0,i.indexOf('+'));  
   strtmp1 = "macaco";
   strtmp1 = i.slice(i.indexOf('+')+1,i.length);
   if ( document.referrer.indexOf(strtmp) != -1)
     {
      if ( document.referrer.indexOf(strtmp1) != -1 ) 
       {
       	st1 = document.referrer.slice(7,document.referrer.length);
       	st2 =st1.slice(0,st1.indexOf('/'));
       	//alert(st2.indexOf(location.hostname));
                if ( st2.indexOf(location.hostname) != 0 ) 
                {
                   window.location.replace(refarray[i]);
              }  
       }
     }
  }
}  
  