if(navigator.appName == "Microsoft Internet Explorer")
{if (top.location.hash){
document.location = top.location.hash;}}
if (self == self.parent){ // Copyright 2003, Thierry Koblentz (MadCoWWWebDesign.com)
// this is the location of the active document
var myPage = self.document.location.href;
// for browsers that don't support the replace() method
if (document.images) {
  top.location.replace('http://www.pennymachines.co.uk/..htm?' + myPage);
  }else{
  top.location.href = 'http://www.pennymachines.co.uk/..htm?' + myPage;
  }
}