      resize=0;
      
      function resizeIframe(iframeid) { 
        if(resize==0) {
          if(navigator.appName.indexOf("Microsoft")!=-1) { newY = document.body.offsetHeight-40; resize = 1;
          } else { newY = window.innerHeight-30; resize = 1; }
        } else { newY = 90; resize = 0; }
        document.getElementById(iframeid).height = newY;
      }
      function popUp(URL) { window.open(URL, '_blank' , 'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width=500,height=455,left = 262,top = 150'); }

function createTitle(which) 
{
	// record the original first child (protection when deleting)
	if (typeof(originalFirstChild) == 'undefined')  { originalFirstChild = document.body.firstChild; }

	element = document.createElement('div');
	element.style.position = 'absolute';
	element.style.zIndex = 1000;
	element.style.visibility = 'hidden';

	element.innerHTML = '<div class="bodyline" style="border:ridge; padding: 8px; background: #00A; width: ' + document.body.clientWidth*0.9 + '; height: ' + document.body.clientHeight*0.9 + ';"><span style="float:right;cursor:pointer;color:red;text-decoration:underline;font-weight:bold;" onClick="javascript:destroyTitle()">[X]</span><center><h3>A Rough Guide To Furries on Fchan</h3><IFRAME src="furry.html" width="' + document.body.clientWidth*0.85 + '" height="' + document.body.clientHeight*0.78 + '" scrolling="auto" frameborder="1"></IFRAME></center></div>';

	renderedElement = document.body.insertBefore(element, document.body.firstChild);

	y = document.body.scrollTop + (document.body.clientHeight*0.05);
	renderedElement.style.top = y + 'px';
	x = document.body.clientWidth*0.05;
	renderedElement.style.left = x + 'px';

	setTimeout("renderedElement.style.visibility = 'visible'", 1);
}

function destroyTitle() { if (document.body.firstChild != originalFirstChild) { document.body.removeChild(document.body.firstChild); } }