function DefineAmazonLinks(show)
{
// Script to search for all URLs on the page and see if it has an href 
// defined as 'title' with the Amazon reference in it. If this is the case 
// then reassign it to point to the relevant page on the site. 
// (C)opyright DVD365.NET

var r2count=0;

if (show==null||show==2){
 for (i=0;i<document.links.length;i++)
 {
  TitleID=document.links[i].href;
			
  if ((IDpos=TitleID.indexOf("r2title:"))>=0)
  {
   r2count++;
   TitleID=TitleID.substr(IDpos+8);
  document.links[i].href="http://www.amazon.co.uk/exec/obidos/ASIN/"+TitleID+"/dvd3netdvdforthe";	
  }
  else if ((IDpos=TitleID.indexOf("r1title:"))>=0)
  {
   TitleID=TitleID.substr(IDpos+8);
   document.links[i].href="http://www.amazon.com/exec/obidos/ASIN/"+TitleID+"/dvd365net";
  }
  else if ((IDpos=TitleID.indexOf("r1atitle:"))>=0)
  {
   TitleID=TitleID.substr(IDpos+9);
   document.links[i].href="http://www.amazon.ca/exec/obidos/ASIN/"+TitleID+"/dvd365net-20";
  }
 }
}

if (r2count==1&&show!=2){
 document.write('<p align="center">');
 document.write('<iframe src="http://rcm-uk.amazon.co.uk/e/cm?t=dvd3netdvdforthe&o=2&p=42&l=ur1&category=hidef_dvd&banner=01WT459TKNGX6AZ4ARR2&f=ifr&lt1=_new" width="234" height="60" scrolling="no" border="0" marginwidth="0" style="border:none;" frameborder="0"></iframe>')
 document.write('</p>');
}

if (show!=null&&show==1){
 document.write('<p align="center"><font color="#FFFFFF" face="Arial" size="1">');
 document.write( 'Note:- If you have navigated to this page directly, ');
 document.write('normally via a search engine, then the main site will be automatically ');
 document.write('loaded and re-displayed in the correct frame. As a result of this, using the ');
 document.write( '"back" option on your browser may prevent you from navigating to ');
 document.write( 'previous sites. It is certainly not our intention to keep you trapped on ');
 document.write( 'our site.</font></p>');
}

document.write('<p align="center"><font color="#FFFFFF" face="Arial" size="1">');
document.write('Site and content © copyright 2000-2010 <b>DVD365.net</b>. Content may only be used with written permission from the webmaster<br>');
document.write('All images and trademarks are copyright their respective owners</p>');

document.write('<script src="http://my.stats2.com/103802.js" type="text/javascript"></script>');
}


