document.write('');
document.write('<HEAD>');
document.write('<TITLE>Fortean Times UK</TITLE>');
document.write('<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">');
document.write('<meta name=\"robots\" content=\"noodp\">');
document.write('<meta name=\"verify-v1\" content=\"hQVe9qDjrQEjVvI4zOjml11E0+IqCIoaK1QXSsaZsNQ=\" />');
document.write('<link rel=\'stylesheet\' href=\'http://photos.forteantimes.com/front_stylesheets/inskinNormal.css\' type=\'text/css\' title=\'Normal\'><!--  normal inskin_style -->');
document.write('<link rel=\'alternate stylesheet\' href=\'http://photos.forteantimes.com/front_stylesheets/inskinFull.css\' type=\'text/css\' title=\'Full\'><!--  full screen inskin_style -->');
document.write('');
document.write('<link rel=\'stylesheet\' id =\'css1\' href=\'http://photos.forteantimes.com/front_stylesheets/styles_forteantimes.css\' type=\'text/css\'>');
document.write('');
document.write('');
document.write('<link rel=stylesheet href=\"http://photos.forteantimes.com/front_stylesheets/registration_styles.css\" type=\'text/css\'>');
document.write('');
document.write('');
document.write('');
document.write('');

function openWindow(filename, pic_width, pic_height) {
	pic_width=pic_width+20;
	pic_height=pic_height+20;
	winStats='resizable=no,toolbar=no,location=no,directories=no,menubar=no,';
	winStats+='scrollbars=no,width='+pic_width+',height=';
	winStats+=pic_height;
	if (navigator.appName.indexOf("Microsoft")>=0) {
		winStats+=',left=10,top=25';
	} else {
		winStats+=',screenX=10,screenY=25';
	}
	winLoc = filename;
	floater=window.open(winLoc,"maximWindow",winStats);
	if (!floater.opener) floater.opener = self;
}

function openWindowS(filename, pic_width, pic_height) {
	pic_width=pic_width+20;
	pic_height=pic_height+20;
	winStats='resizable=no,toolbar=no,location=no,directories=no,menubar=no,';
	winStats+='scrollbars=yes,width='+pic_width+',height=';
	winStats+=pic_height;
	if (navigator.appName.indexOf("Microsoft")>=0) {
		winStats+=',left=10,top=25';
	} else {
		winStats+=',screenX=10,screenY=25';
	}
	winLoc = filename;
	floater=window.open(winLoc,"maximWindow",winStats);
	if (!floater.opener) floater.opener = self;
}

dropMenu.Registry = [];
dropMenu.aniLen = 150;
dropMenu.hideDelay = 100;
dropMenu.minCPUResolution = 10;

var _tpNS = (document.all)?false:true;

function getOffsetLeft (el) {
  var sl = el;
  var ol = el.offsetLeft;
  var sh = 0;
  while ((el = el.offsetParent) != null){
    ol += el.offsetLeft;
     if(el.offsetParent && el.offsetParent.offsetParent){
     var scrollLeft = el.offsetParent.scrollLeft;
       if(!isNaN(scrollLeft)){
         sh -= scrollLeft;
       }
    }
  }

   el = sl;
   if(_tpNS){
        while((el = el.parentNode) != null){
             if(el.parentNode && el.parentNode.parentNode
                && !(el.parentNode.tagName && 
el.parentNode.tagName.toUpperCase() == "BODY")){
      	        var scrollLeft = el.parentNode.scrollLeft;
                if(!isNaN(scrollLeft) && scrollLeft > 0 ){
                   sh -= scrollLeft;
                }
            }
        }
   }
  return ol+sh;
}



function dropMenu(id, dir, left, top, width, height)
{
this.ie = document.all ? 1 : 0
this.ns4 = document.layers ? 1 : 0
this.dom = document.getElementById ? 1 : 0
if (this.ie || this.ns4 || this.dom) 
	{
	this.id = id
	this.dir = dir
	this.orientation = dir == "left" || dir == "right" ? "h" : "v"
	this.dirType = dir == "right" || dir == "down" ? "-" : "+"
	this.dim = this.orientation == "h" ? width : height
	this.hideTimer = false
	this.aniTimer = false
	this.open = false
	this.over = false
	this.startTime = 0
	this.gRef = "dropMenu_"+id
	eval(this.gRef+"=this")
	dropMenu.Registry[id] = this
	//var newleft = getAbsX(document.getElementById('t_'+id)) - 5;
	//alert(newleft);
	var d = document
	var strCSS = '<style type="text/css">';
	strCSS += '#' + this.id + 'Container { visibility:hidden; '
	strCSS += 'left:' + left + 'px; '
	strCSS += 'top:' + top + 'px; '
	strCSS += 'overflow:hidden; z-index:10000; }'
	strCSS += '#' + this.id + 'Container, #' + this.id + 'Content { position:absolute; '
	strCSS += 'width:' + width + 'px; '
	strCSS += 'height:' + height + 'px; '
	strCSS += 'clip:rect(0 ' + width + ' ' + height + ' 0); '
	strCSS += '}'
	strCSS += '</style>'
	d.write(strCSS)
	this.load()
	}
}
dropMenu.prototype.load = function() 
{
var d = document
var lyrId1 = this.id + "Container"
var lyrId2 = this.id + "Content"
var obj1 = this.dom ? d.getElementById(lyrId1) : this.ie ? d.all[lyrId1] : d.layers[lyrId1]
if (obj1) var obj2 = this.ns4 ? obj1.layers[lyrId2] : this.ie ? d.all[lyrId2] : d.getElementById(lyrId2)
var temp
if (!obj1 || !obj2) window.setTimeout(this.gRef + ".load()", 100)
else {
this.container = obj1
this.menu = obj2
this.style = this.ns4 ? this.menu : this.menu.style
this.homePos = eval("0" + this.dirType + this.dim)
this.outPos = 0
this.accelConst = (this.outPos - this.homePos) / dropMenu.aniLen / dropMenu.aniLen 
if (this.ns4) this.menu.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
this.menu.onmouseover = new Function("dropMenu.showMenu('" + this.id + "')")
this.menu.onmouseout = new Function("dropMenu.hideMenu('" + this.id + "')")
this.endSlide()
}
}
dropMenu.showMenu = function(id)
{
var reg = dropMenu.Registry
var obj = dropMenu.Registry[id]
if (obj.container) {
obj.over = true
for (menu in reg) if (id != menu) dropMenu.hide(menu)
if (obj.hideTimer) { reg[id].hideTimer = window.clearTimeout(reg[id].hideTimer) }
if (!obj.open && !obj.aniTimer) reg[id].startSlide(true)
}
}
dropMenu.hideMenu = function(id)
{
var obj = dropMenu.Registry[id]
if (obj.container) {
if (obj.hideTimer) window.clearTimeout(obj.hideTimer)
obj.hideTimer = window.setTimeout("dropMenu.hide('" + id + "')", dropMenu.hideDelay);
}
}
dropMenu.hideAll = function()
{
var reg = dropMenu.Registry
for (menu in reg) {
dropMenu.hide(menu);
if (menu.hideTimer) window.clearTimeout(menu.hideTimer);
}
}
dropMenu.hide = function(id)
{
var obj = dropMenu.Registry[id]
obj.over = false
if (obj.hideTimer) window.clearTimeout(obj.hideTimer)
obj.hideTimer = 0
if (obj.open && !obj.aniTimer) obj.startSlide(false)
}
dropMenu.prototype.startSlide = function(open) {
this[open ? "onactivate" : "ondeactivate"]()
this.open = open
if (open) this.setVisibility(true)
this.startTime = (new Date()).getTime() 
this.aniTimer = window.setInterval(this.gRef + ".slide()", dropMenu.minCPUResolution)
}
dropMenu.prototype.slide = function() {
var elapsed = (new Date()).getTime() - this.startTime
if (elapsed > dropMenu.aniLen) this.endSlide()
else {
var d = Math.round(Math.pow(dropMenu.aniLen-elapsed, 2) * this.accelConst)
if (this.open && this.dirType == "-") d = -d
else if (this.open && this.dirType == "+") d = -d
else if (!this.open && this.dirType == "-") d = -this.dim + d
else d = this.dim + d
this.moveTo(d)
}
}
dropMenu.prototype.endSlide = function() {
this.aniTimer = window.clearTimeout(this.aniTimer)
this.moveTo(this.open ? this.outPos : this.homePos)
if (!this.open) this.setVisibility(false)
if ((this.open && !this.over) || (!this.open && this.over)) {
this.startSlide(this.over)
}
}
dropMenu.prototype.setVisibility = function(bShow) { 
var s = this.ns4 ? this.container : this.container.style
s.visibility = bShow ? "visible" : "hidden"
}
dropMenu.prototype.moveTo = function(p) { 
this.style[this.orientation == "h" ? "left" : "top"] = this.ns4 ? p : p + "px"
}
dropMenu.prototype.getPos = function(c) {
return parseInt(this.style[c])
}
dropMenu.prototype.onactivate = function() {}
dropMenu.prototype.ondeactivate = function() { }

function setCookie(name, value, expires, path, domain, secure, showa) {
  var curCookie = name + "=" + escape(value) +
      ((expires) ? "; expires=" + expires.toGMTString() : "") +
      ((path) ? "; path=" + path : "") +
      ((domain) ? "; domain=" + domain : "") +
      ((secure) ? "; secure" : "");
  if (showa==1) { alert(curCookie); }
  document.cookie = curCookie;
}

function getCookie(name) {
  var dc = document.cookie;
  var prefix = name + "=";
  var begin = dc.indexOf("; " + prefix);
  if (begin == -1) {
    begin = dc.indexOf(prefix);
    if (begin != 0) return null;
  } else
    begin += 2;
  var end = document.cookie.indexOf(";", begin);
  if (end == -1)
    end = dc.length;
  return unescape(dc.substring(begin + prefix.length, end));
}

function deleteCookie(name, path, domain) {
  if (getCookie(name)) {
    document.cookie = name + "=" + 
    ((path) ? "; path=" + path : "") +
    ((domain) ? "; domain=" + domain : "") +
    "; expires=Thu, 01-Jan-70 00:00:01 GMT";
  }
}

function fixDate(date) {
  var base = new Date(0);
  var skew = base.getTime();
  if (skew > 0)
    date.setTime(date.getTime() - skew);
}

var now = new Date();
var expire_time = new Date();
fixDate(now); fixDate(expire_time);
expire_time.setTime(now.getTime() + 60 * 24 * 60 * 60 * 1000); // Expire in 60 days

document.write('');
document.write('');

function hideOverlay() {
document.getElementById('dc_overlay').style.display = "none";
}

document.write('');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('</HEAD>');
document.write('<BODY style=\"text-align: center;\">');

var _hbEC=0,_hbE=new Array;function _hbEvent(a,b){b=_hbE[_hbEC++]=new Object();b._N=a;b._C=0;return b;}
var hbx=_hbEvent("pv");hbx.vpc="HBX0200u";hbx.gn="a.forteantimes.com";

hbx.acct="DM57030861DW";
hbx.pn="Registration";
hbx.mlc="/Third+Party/";
hbx.pndef="title";
hbx.ctdef="full";

hbx.fv="";
hbx.lt="none";
hbx.dlf="n";
hbx.dft="n";
hbx.elf="n";

hbx.ci="";
hbx.hc1="";
hbx.hc2="";
hbx.hc3="";
hbx.hc4="";
hbx.hrf="";
hbx.pec="";

document.write('<scr'+'ipt lang'+'uage="jav'+'ascr'+'ipt1.1" src="http://photos.forteantimes.com/fr'+'ont_web'+'site/h'+'bx.js"></scr'+'ipt>');
document.write('');
document.write('<!--<a id=\"fouth_kind_link_top\" target=\"_blank\" href=\"http://ad.doubleclick.net/clk;219272872;26369288;x?http://www.thefourthkind.net/\"></a>');
document.write('<a id=\"fouth_kind_link_right\" target=\"_blank\" href=\"http://ad.doubleclick.net/clk;219272872;26369288;x?http://www.thefourthkind.net/\"></a>-->');
document.write('');
document.write('');
document.write('<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" style=\"text-align: left; width: 982px; display: block; margin: 0 auto; position: relative; z-index: 1;\">');
document.write('<tr><td id=\"content\" width=\"100%\">');
document.write('');
document.write('<!-- Start content -->');
document.write('');
document.write('<table width=\'100%\' border=\'0\' cellspacing=\'0\' cellpadding=\'0\' id=\"mfHeader\">');
document.write('<tr><td width=\'100%\'>');
document.write('	');
document.write('<!-- Begin content -->');
document.write('      <table width=\'100%\' border=\'0\' cellspacing=\'0\' cellpadding=\'0\' class=\'backgBiz\'>');
document.write('        <tr>');
document.write('		 <td width=\"244\"><a href=\"http://www.forteantimes.com/\" target=\"_top\" id=\"logo_a\"><img src=\"http://photos.forteantimes.com/images/fortean_times_logo_lb.gif\" border=\"0\" width=\"244\" /></a></td>');
document.write('		  <!-- END homepage_logo_link -->');
document.write('          <td align=\'center\' valign=\'middle\'><div id=\"topbanner\">');
document.write('<iframe src=\"http://ad.doubleclick.net/adi/www.forteantimes.com/thirdparty;tile=1;bigad=yes;live=yes;sz=468x60,728x90;dcopt=ist;ord=8118?\" width=\'468\' height=\'60,728x90\' marginwidth=\'0\' marginheight=\'0\' border=\'0\' frameborder=\'0\' scrolling=\'no\'>');
document.write('<A HREF=\"http://ad.doubleclick.net/jump/www.forteantimes.com/thirdparty;tile=1;bigad=yes;live=yes;sz=468x60,728x90;ord=8118?\" target=\"_blank\" rel=\'nofollow\'><IMG SRC=\"http://ad.doubleclick.net/ad/www.forteantimes.com/thirdparty;tile=1;bigad=yes;live=yes;sz=468x60,728x90;ord=8118?\" border=\"0\" vspace=\"0\" hspace=\"0\" alt=\"[ Advertisement ]\" width=\"468\" height=\"60\"></A></div></td>');
document.write('</iframe>');
document.write('        </tr>');
document.write('      </table>');
document.write('      <table width=\'100%\' border=\'0\' cellspacing=\'0\' cellpadding=\'0\' class=\'backgSearch\'>');
document.write('        <tr>');
document.write('          <td height=\'1\' colspan=\'2\' class=\'backgCont\'><img src=\'http://photos.forteantimes.com/images/pad.gif\' width=\'10\' height=\'1\'></td>');
document.write('        </tr>');
document.write('        <tr>');
document.write('          ');
document.write('		  <td valign=\'middle\' id=\'searchpadL\' class=\'searchtext\'><font class=\'searchtextB\'>&nbsp;&nbsp;&nbsp;<a href=\'http://www.forteantimes.com/reg/?page=login\' rel=\'nofollow\'>LOGIN</a> | <a href=\'http://www.forteantimes.com/reg/?page=register\' rel=\'nofollow\'>REGISTER</a></font> &nbsp;Unregistered</td>');
document.write('		  ');
document.write('		  ');
document.write('		  ');
document.write('		   ');
document.write('		  <form name=\'search_form\' action=\'http://www.forteantimes.com/search/\' method=\'get\'>');
document.write('          <td valign=\'middle\' align=\'right\' id=\'searchpadR\' class=\'searchtext\'><font class=\'searchtextB\'>SEARCH</font> <input type=\'tex\' name=\'words\' id=\'searchform\' value=\'SEARCH\'> <input type=\'hidden\' name=\'searchby\' value=\'maxim\'>&nbsp;<input type=\'submit\' name=\'submit\' value=\'GO\' id=\'gobutton\'></td>');
document.write('		  </form>');
document.write('		  ');
document.write('        </tr>');
document.write('      </table>');
document.write('	  ');
document.write('		  <table width=\'100%\' height=\'29\' border=\'0\' cellspacing=\'0\' cellpadding=\'0\'>');
document.write('        <tr>');
document.write('        <td background=\'http://photos.forteantimes.com/front_website/images/navbarbackg_left.gif\' width=\'7\'>&nbsp;</td>');
document.write('          <td align=\'center\' valign=\'middle\' id=\'navbackg\' class=\'navtitle\'>');
document.write('<a href=\'http://www.forteantimes.com/latest/breaking-news/\' target=\'_top\' onMouseOver=\"dropMenu.showMenu(\'fortean_times_1_link\');\" onMouseOut=\"dropMenu.hideMenu(\'fortean_times_1_link\');\" id=\'t_fortean_times_1_link\' name=\'t_fortean_times_1_link\'><nobr>BREAKING NEWS</nobr></a><img src=\'http://photos.forteantimes.com/images/pad.gif\' width=\'50\' height=\'10\' border=\'0\' hspace=\'0\' vspace=\'0\' alt=\'&nbsp;\'><a href=\'http://www.forteantimes.com/features/\' target=\'_top\' onMouseOver=\"dropMenu.showMenu(\'fortean_times_2_link\');\" onMouseOut=\"dropMenu.hideMenu(\'fortean_times_2_link\');\" id=\'t_fortean_times_2_link\' name=\'t_fortean_times_2_link\'><nobr>FEATURES</nobr></a><img src=\'http://photos.forteantimes.com/images/pad.gif\' width=\'50\' height=\'10\' border=\'0\' hspace=\'0\' vspace=\'0\' alt=\'&nbsp;\'><a href=\'http://ad.doubleclick.net/clk;214251595;26369288;r?http://www.forteantimes.co.uk/startrek/\' target=\'_top\' onMouseOver=\"dropMenu.showMenu(\'fortean_times_3_link\');\" onMouseOut=\"dropMenu.hideMenu(\'fortean_times_3_link\');\" id=\'t_fortean_times_3_link\' name=\'t_fortean_times_3_link\'><nobr>STAR TREK</nobr></a><img src=\'http://photos.forteantimes.com/images/pad.gif\' width=\'50\' height=\'10\' border=\'0\' hspace=\'0\' vspace=\'0\' alt=\'&nbsp;\'><a href=\'http://www.forteantimes.com/strangedays/\' target=\'_top\' onMouseOver=\"dropMenu.showMenu(\'fortean_times_4_link\');\" onMouseOut=\"dropMenu.hideMenu(\'fortean_times_4_link\');\" id=\'t_fortean_times_4_link\' name=\'t_fortean_times_4_link\'><nobr>STRANGE DAYS</nobr></a><img src=\'http://photos.forteantimes.com/images/pad.gif\' width=\'50\' height=\'10\' border=\'0\' hspace=\'0\' vspace=\'0\' alt=\'&nbsp;\'><a href=\'http://www.forteantimes.com/community/\' target=\'_top\' onMouseOver=\"dropMenu.showMenu(\'fortean_times_5_link\');\" onMouseOut=\"dropMenu.hideMenu(\'fortean_times_5_link\');\" id=\'t_fortean_times_5_link\' name=\'t_fortean_times_5_link\'><nobr>COMMUNITY</nobr></a><img src=\'http://photos.forteantimes.com/images/pad.gif\' width=\'50\' height=\'10\' border=\'0\' hspace=\'0\' vspace=\'0\' alt=\'&nbsp;\'><a href=\'http://www.forteantimes.com/reviews/\' target=\'_top\' onMouseOver=\"dropMenu.showMenu(\'fortean_times_6_link\');\" onMouseOut=\"dropMenu.hideMenu(\'fortean_times_6_link\');\" id=\'t_fortean_times_6_link\' name=\'t_fortean_times_6_link\'><nobr>REVIEWS</nobr></a><img src=\'http://photos.forteantimes.com/images/pad.gif\' width=\'50\' height=\'10\' border=\'0\' hspace=\'0\' vspace=\'0\' alt=\'&nbsp;\'><a href=\'http://www.forteantimes.com/offers/\' target=\'_top\' onMouseOver=\"dropMenu.showMenu(\'fortean_times_7_link\');\" onMouseOut=\"dropMenu.hideMenu(\'fortean_times_7_link\');\" id=\'t_fortean_times_7_link\' name=\'t_fortean_times_7_link\'><nobr>OFFERS</nobr></a><img src=\'http://photos.forteantimes.com/images/pad.gif\' width=\'50\' height=\'10\' border=\'0\' hspace=\'0\' vspace=\'0\' alt=\'&nbsp;\'><a href=\'http://www.forteantimes.com/themag/\' target=\'_top\' onMouseOver=\"dropMenu.showMenu(\'fortean_times_8_link\');\" onMouseOut=\"dropMenu.hideMenu(\'fortean_times_8_link\');\" id=\'t_fortean_times_8_link\' name=\'t_fortean_times_8_link\'><nobr>MAGAZINE</nobr></a></td>');
document.write('        <td background=\'http://photos.forteantimes.com/front_website/images/navbarbackg_right.gif\' width=\'7\'>&nbsp;</td>');
document.write('        </tr>');
document.write('      </table>');
document.write('');
document.write('	  ');
document.write('');
document.write('      </table>');
document.write('');
document.write('<table width=\'982\' border=\'0\' cellspacing=\'0\' cellpadding=\'0\' id=\"mfPage\">');
document.write('  <tr>');
document.write('	');
document.write('		<td valign=\'top\' class=\'backgCont\'>');
document.write('	');
document.write('      <table width=\'100%\' border=\'0\' cellspacing=\'0\' cellpadding=\'0\' class=\"noPrint\">');
document.write('        <tr>');
document.write('          <td colspan=\'3\' class=\'backgBody\'><img src=\'http://photos.forteantimes.com/images/pad.gif\' width=\'1\' height=\'6\'></td>');
document.write('        </tr>');
document.write('		');
document.write('      </table>');
document.write('    ');
document.write('   ');
