document.write('');
document.write('<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">');
document.write('');
document.write('<HEAD>');
document.write('');
document.write('<TITLE>Bizarre Magazine UK</TITLE>');
document.write('');
document.write('<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">');
document.write('');
document.write('<meta name=\"robots\" content=\"noodp\">');
document.write('<!-- BEGIN template_name -->');
document.write('<meta name=\"dennis_template\" content=\"{TEMPLATE_NAME}\" />');
document.write('<!-- END template_name-->');
document.write('<link rel=\'stylesheet\' href=\'http://photos.bizarremag.com/front_stylesheets/styles_bizarre.css\'');
document.write('	type=\'text/css\'>');
document.write('<link rel=\'stylesheet\' href=\'http://photos.bizarremag.com/front_stylesheets/inskinNormal.css\'');
document.write('	type=\'text/css\'>');
document.write('');
document.write('<link rel=stylesheet href=\"http://photos.bizarremag.com/front_stylesheets/registration_styles.css\" type=\'text/css\'>');
document.write('');
document.write('');
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,"bizarreWindow",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,"bizarreWindow",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 getAbsX(elt) { return parseInt(elt.x) ? elt.x : getAbsPos(elt,"Left"); };
function getAbsPos(elt, which) { iPos = 0; while (elt != null) { iPos += elt["offset" + which]; elt = elt.offsetParent; } return iPos; }


var newi = 0;

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('');
document.write('');
document.write('<!-- AUDIENCESCIENCE AD TAG CODE -->');
document.write('');

var rsi_segs = [];
var segs_beg=document.cookie.indexOf('rsi_segs=');
if (segs_beg>=0){
segs_beg=document.cookie.indexOf('=',segs_beg)+1;
if(segs_beg>0){
var segs_end=document.cookie.indexOf(';',segs_beg);
if(segs_end==-1) segs_end=document.cookie.length;
rsi_segs=document.cookie.substring(segs_beg,segs_end)
.split('|');
}
}
var segLen=20;
var segQS="";
if (rsi_segs.length<segLen){segLen=rsi_segs.length}
for (var i=0;i<segLen;i++){
segQS+=("rsi"+"="+rsi_segs[i]+";")
}

document.write('<!-- END AUDIENCESCIENCE AD TAG CODE -->');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('<!-- beginISkinVideoHeaderBlock -->');
document.write('');
document.write('<!-- endISkinVideoHeaderBlock -->');
document.write('</HEAD>');
document.write('<BODY style=\"text-align: center;\">');
document.write('');
document.write('');
document.write('<!-- CLICK TAG TO GO HERE -->');
document.write('');
document.write('<!-- Homepage Hostel 3 Skin - Jan 2012 -->');
document.write('<div id=\"skin\"><a id=\"skinLink\" target=\"_blank\" href=\"http://ad.doubleclick.net/clk;252120361;26369288;f?http://servedby.flashtalking.com/click/1/19192;243508;50126;211;0/?&url=1344327\"><img width=\"100%\" height=\"100%\"  border=\"0\" src=\"http://photos.bizarremag.com/images/pad.gif\"/></a></div>');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"982\"');
document.write('	id=\"super_table_container\" class=\"super_table_container\"');
document.write('	style=\"text-align: left; width: 982px; display: block; margin: 0 auto; position: relative; z-index: 5;\">');
document.write('	<tr>');
document.write('		<td id=\"content\" width=\"982\"><!-- Start content -->');
document.write('');
document.write('		<table width=\'982\' border=\'0\' cellspacing=\'0\' cellpadding=\'0\'');
document.write('			class=\'backgBiz\' id=\'headerContentBody\'>');
document.write('			<tr>');
document.write('				<td>');
document.write('				<table width=\'982\' height=\'100%\' border=\'0\' cellspacing=\'0\'');
document.write('					cellpadding=\'0\'>');
document.write('					<tr>');
document.write('');
document.write('						');
document.write('						<td width=\'236\'><a href=\'http://www.bizarremag.com/\' target=\'_top\'><img');
document.write('							src=\'http://photos.bizarremag.com/images/bizarre_logo.gif\' border=\'0\' alt=\'Bizarre\'');
document.write('							id=\'bizarre_site_logo\'></a></td>');
document.write('						');
document.write('						<td align=\'center\' valign=\'middle\'>');
document.write('						');
document.write('<A HREF=\"http://ad.doubleclick.net/N359/jump/bizarremag.com/thirdparty;tile=1;bigad=yes;live=yes;sz=468x60,728x90;ord=7916552988?\" target=\"_blank\" rel=\'nofollow\'><IMG SRC=\"http://ad.doubleclick.net/N359/ad/bizarremag.com/thirdparty;tile=1;bigad=yes;live=yes;sz=468x60,728x90;ord=7916552988?\" border=\"0\" vspace=\"0\" hspace=\"0\" alt=\"[ Advertisement ]\" width=\"468\" height=\"60\"></A> </td>');
document.write('					</tr>');
document.write('				</table>');
document.write('				<table width=\'100%\' border=\'0\' cellspacing=\'0\' cellpadding=\'0\'');
document.write('					class=\'backgSearch\'>');
document.write('					<tr>');
document.write('						<td height=\'1\' colspan=\'8\' class=\'backgCont\'><img');
document.write('							src=\'http://photos.bizarremag.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\' width=\"210\"><font');
document.write('							class=\'searchtextB\'>&nbsp;&nbsp;&nbsp;<a');
document.write('							href=\'http://www.bizarremag.com/reg/?page=login\' rel=\'nofollow\'>LOGIN</a>');
document.write('						| <a href=\'http://www.bizarremag.com/reg/?page=register\' rel=\'nofollow\'>REGISTER</a></font>');
document.write('						&nbsp;Unregistered</td>');
document.write('						<td valign=\'middle\' class=\'searchtext\' width=\"38\"><a');
document.write('							href=\"http://www.savagehearts.co.uk/\"><img');
document.write('							src=\"http://photos.bizarremag.com/images/savageheart_small.gif\" border=\"0\"></a></td>');
document.write('						<td valign=\'middle\' class=\'searchtext\' width=\"146\"><font');
document.write('							class=\'searchtextB\'><a');
document.write('							href=\"http://www.bizarremag.com/front_website/savagehearts/\"');
document.write('							target=\"_blank\"><strong>Savage Hearts Dating</strong></a></font></td>');
document.write('						<td valign=\'middle\' class=\'searchtext\' width=\"38\"><a');
document.write('							href=\"http://ultravixens.net/\"><img');
document.write('							src=\"http://photos.bizarremag.com/images/ultraVixen_small.jpg\" border=\"0\"></a></td>');
document.write('						<td valign=\'middle\' class=\'searchtext\' width=\"102\"><font');
document.write('							class=\'searchtextB\'><a href=\"http://ultravixens.net/\"');
document.write('							target=\"_blank\"><strong>Ultra Vixens</strong></a></font></td>');
document.write('						<td valign=\'middle\' id=\'searchpadL\' class=\'searchtext\' width=\"29\"><a');
document.write('							href=\'http://www.bizarremag.com/reg/?page=register\'><img');
document.write('							src=\'http://photos.bizarremag.com/images/newsletter_small.gif\' border=\'0\'');
document.write('							alt=\'Newsletter Sign-up\' title=\'Newsletter Sign-up\'></a></td>');
document.write('						<td width=\"90\"><font class=\'searchtextB\'><a');
document.write('							href=\'http://www.bizarremag.com/reg/?page=register\'><strong>Newsletter</strong></a></font></td>');
document.write('							');
document.write('						<td valign=\'middle\' class=\'searchtext\' width=\"47\"><font');
document.write('							class=\'searchtextB\'><a href=\"http://www.muzu.tv/hosted?host=muzu.bizarremag.com&onsiteview=y&hostedcache=y\"');
document.write('							target=\"_blank\"><strong>Jukebox</strong></a></font></td>	');
document.write('							');
document.write('						');
document.write('						');
document.write('						');
document.write('						');
document.write('						<form name=\'search_form\' action=\'http://www.bizarremag.com/search/\' method=\'get\'>');
document.write('						<td valign=\'middle\' align=\'right\' id=\'searchpadR\'');
document.write('							class=\'searchtext\'><font class=\'searchtextB\'>SEARCH</font>');
document.write('						<input type=\'tex\' name=\'words\' id=\'searchform\'');
document.write('							value=\'\'> <input type=\'hidden\'');
document.write('							name=\'searchby\' value=\'maxim\'>&nbsp;<input type=\'submit\'');
document.write('							name=\'gobutton\' value=\'GO\' id=\'gobutton\'></td>');
document.write('						</form>');
document.write('						');
document.write('					</tr>');
document.write('				</table>');
document.write('				   <table width=\'100%\' height=\'29\' border=\'0\' cellspacing=\'0\' cellpadding=\'0\'>');
document.write('        <tr>');
document.write('        <td background=\'http://photos.bizarremag.com/front_website/images/navbarbackg_left.gif\' width=\'7\' id=\'navbarbackgLeft\'>&nbsp;</td>');
document.write('          <td align=\'center\' valign=\'middle\' id=\'navbackg\' class=\'navtitle\'>');
document.write('<a href=\'http://your-bizarre.tumblr.com\' target=\'_top\' onMouseOver=\"dropMenu.showMenu(\'bizarre_1_link\');\" onMouseOut=\"dropMenu.hideMenu(\'bizarre_1_link\');\" id=\'t_bizarre_1_link\' name=\'t_bizarre_1_link\'><nobr>YOUR BIZARRE</nobr></a><img src=\'http://photos.bizarremag.com/images/pad.gif\' width=\'25\' height=\'10\' border=\'0\' hspace=\'0\' vspace=\'0\' alt=\'&nbsp;\'><a href=\'http://www.bizarremag.com/news-and-videos/\' target=\'_top\' onMouseOver=\"dropMenu.showMenu(\'bizarre_2_link\');\" onMouseOut=\"dropMenu.hideMenu(\'bizarre_2_link\');\" id=\'t_bizarre_2_link\' name=\'t_bizarre_2_link\'><nobr>NEWS &AMP; VIDEOS</nobr></a><img src=\'http://photos.bizarremag.com/images/pad.gif\' width=\'25\' height=\'10\' border=\'0\' hspace=\'0\' vspace=\'0\' alt=\'&nbsp;\'><a href=\'http://www.bizarremag.com/tattoos-and-bodyart/\' target=\'_top\' onMouseOver=\"dropMenu.showMenu(\'bizarre_3_link\');\" onMouseOut=\"dropMenu.hideMenu(\'bizarre_3_link\');\" id=\'t_bizarre_3_link\' name=\'t_bizarre_3_link\'><nobr>TATTOOS &AMP; BODY ART</nobr></a><img src=\'http://photos.bizarremag.com/images/pad.gif\' width=\'25\' height=\'10\' border=\'0\' hspace=\'0\' vspace=\'0\' alt=\'&nbsp;\'><a href=\'http://www.bizarremag.com/alt-girls/\' target=\'_top\' onMouseOver=\"dropMenu.showMenu(\'bizarre_4_link\');\" onMouseOut=\"dropMenu.hideMenu(\'bizarre_4_link\');\" id=\'t_bizarre_4_link\' name=\'t_bizarre_4_link\'><nobr>ALT GIRLS</nobr></a><img src=\'http://photos.bizarremag.com/images/pad.gif\' width=\'25\' height=\'10\' border=\'0\' hspace=\'0\' vspace=\'0\' alt=\'&nbsp;\'><a href=\'http://www.bizarremag.com/bizarre-events/bizarre-ball/\' target=\'_top\' onMouseOver=\"dropMenu.showMenu(\'bizarre_5_link\');\" onMouseOut=\"dropMenu.hideMenu(\'bizarre_5_link\');\" id=\'t_bizarre_5_link\' name=\'t_bizarre_5_link\'><nobr>BIZARRE BALL</nobr></a><img src=\'http://photos.bizarremag.com/images/pad.gif\' width=\'25\' height=\'10\' border=\'0\' hspace=\'0\' vspace=\'0\' alt=\'&nbsp;\'><a href=\'http://www.bizarremag.com/film-and-music/\' target=\'_top\' onMouseOver=\"dropMenu.showMenu(\'bizarre_6_link\');\" onMouseOut=\"dropMenu.hideMenu(\'bizarre_6_link\');\" id=\'t_bizarre_6_link\' name=\'t_bizarre_6_link\'><nobr>FILM &AMP; MUSIC</nobr></a><img src=\'http://photos.bizarremag.com/images/pad.gif\' width=\'25\' height=\'10\' border=\'0\' hspace=\'0\' vspace=\'0\' alt=\'&nbsp;\'><a href=\'http://www.bizarremag.com/fetish/\' target=\'_top\' onMouseOver=\"dropMenu.showMenu(\'bizarre_7_link\');\" onMouseOut=\"dropMenu.hideMenu(\'bizarre_7_link\');\" id=\'t_bizarre_7_link\' name=\'t_bizarre_7_link\'><nobr>FETISH</nobr></a><img src=\'http://photos.bizarremag.com/images/pad.gif\' width=\'25\' height=\'10\' border=\'0\' hspace=\'0\' vspace=\'0\' alt=\'&nbsp;\'><a href=\'http://www.bizarremag.com/shop/\' target=\'_top\' onMouseOver=\"dropMenu.showMenu(\'bizarre_8_link\');\" onMouseOut=\"dropMenu.hideMenu(\'bizarre_8_link\');\" id=\'t_bizarre_8_link\' name=\'t_bizarre_8_link\'><nobr>BIZARRE SHOP</nobr></a><img src=\'http://photos.bizarremag.com/images/pad.gif\' width=\'25\' height=\'10\' border=\'0\' hspace=\'0\' vspace=\'0\' alt=\'&nbsp;\'><a href=\'http://subscribe.bizarremag.com/?utm_source=BZ&utm_medium=ILC&utm_content=sec&utm_campaign=16563for%C2%A31_nav\' target=\'_blank\' onMouseOver=\"dropMenu.showMenu(\'bizarre_9_link\');\" onMouseOut=\"dropMenu.hideMenu(\'bizarre_9_link\');\" id=\'t_bizarre_9_link\' name=\'t_bizarre_9_link\'><nobr>3 ISSUES FOR &#163;1</nobr></a></td>');
document.write('        <td background=\'http://photos.bizarremag.com/front_website/images/navbarbackg_right.gif\' width=\'7\' id=\'navbarbackgRight\'>&nbsp;</td>');
document.write('        </tr>');
document.write('      </table>');
document.write(' ');
document.write('				</td>');
document.write('			</tr>');
document.write('		</table>');
document.write('		<table width=\'982\' height=\'100%\' border=\'0\' cellspacing=\'0\'');
document.write('			cellpadding=\'0\' id=\'mainContentBody\'>');
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\'>');
document.write('					<tr>');
document.write('						<td colspan=\'3\' class=\'backgBody\' id=\'belowNavSpacer\'><img');
document.write('							src=\'http://photos.bizarremag.com/images/pad.gif\' width=\'1\' height=\'6\'></td>');
document.write('					</tr>');
document.write('					');
document.write('				</table>');

