var ua = "" + navigator.userAgent;
if((document.getElementById("memoryscroller")) && (ua.indexOf("Firefox") != -1)) { // float skyscraper to the right if firefox - this fixes the issue of flickering skys when a ticker module is present on same page{
	frsky = " style='float:right;'";
}else{
	frsky = "";
}
if(window['adjustsky'] == undefined){
	adjustsky = 0;
}
document.write('<span id="skyscraper" class="skyscraper_off" ' + frsky + '>');
makeBlank(120+adjustsky,600);

function makeBlank(dimw,dimh){
	document.write('<div style="text-align:center"><iframe src="//www.tiscali.co.uk/images/t.gif" noresize="noresize" ');
	document.write('scrolling="no" hspace="0" vspace="0" frameborder="0" marginheight="0" marginwidth="0" width="'+dimw+'" height="'+dimh+'" name="skyscraperframe" id="skyscraperframe">');	
	document.write('</iframe></div>');
}

document.write('</span>');

if((getWidth()>(925 + adjustsky)) && (!isSecureAd())){
	doSkyscraper();
}