// JavaScript Document
s_url = window.location.toString();
s_url1 = s_url.split("/");
c_url = s_url1[s_url1.length-1];
if(c_url == 'blends.html')
 document.location = 'blends.php';
else if(c_url == 'single.html')
 document.location = 'single.php';
else if(c_url == 'flavoured_coffee.html')
 document.location = 'flavoured_coffee.php';
else if(c_url == 'vaccum.html')
 document.location = 'vaccum.php';
else if(c_url == 'shopcoffee.html')
 document.location = 'shopcoffee.php';

 

/*
<script language="javascript">
alert("abc");
 var url = window.location.toString();
alert(url);
document.write(url);
</script> 
*/