// Referrer Checker Delerium
<!--
/*Referrer Checker
*/

//ide kell irni az a hívó link cimet, ahonnan jöhet a link
var validreferrals=new Array()
validreferrals[0]="http://www.duotonerepro.hu/"
validreferrals[1]="http://duotonerepro.hu/index.html"
validreferrals[2]="http://www.duotonerepro.hu/index.html"

var passed=0

for (r=0;r<validreferrals.length;r++){
if (document.referrer.indexOf(validreferrals[r])!=-1){
passed=1
break
}
}

if (passed==0){ //ha nem jó a hívó link cím akkor..,
window.location.replace("http://www.duotonerepro.hu/")  //visszamegy a fooldalra
}

//-->
