abLoadOnlyOnce=false;

function getContentFrame(ifrm) {
	if (ifrm.contentDocument) { // NS6
    	return ifrm.contentDocument; 
  	} else if (ifrm.contentWindow) { // IE5.5 and IE6
    	return ifrm.contentWindow.document;
  	} else if (ifrm.document) { // IE5
    	return ifrm.document;
  	}
	return NULL;
}

function pvDoLoad(ifrm) {
	if(!abLoadOnlyOnce) {
		abLoadOnlyOnce=true;
		printPreviewTo(getContentFrame(ifrm));
		pvResize(ifrm);
	}
}

function pvResize(ifrm) {
	pvFixTableWidth(ifrm);
	pvFixFrameHeight(ifrm);
	setTimeout('pvResize(document.getElementById("pvIfrm"))', 500);
}

function pvFixTableWidth(ifrm) {
	doc = getContentFrame(ifrm);
	tbl = doc.getElementById('abPreviewTbl');
	if(tbl) {
		w = ifrm.offsetWidth;
		tbl.width = w;
	}
}

function pvFixFrameHeight(ifrm) {
	doc = getContentFrame(ifrm);
	tbl = doc.getElementById('abPreviewTbl');
	if(tbl) {
		h = tbl.offsetHeight;
		ifrm.height = h;
	}
}

function printPreviewTo(doc) {
doc.writeln('<ht'+'ml><bo'+'dy>');
doc.writeln('<link rel="stylesheet" href="http://www.activeboard.com/templates/default.spark?aBID=88694&d41d8cd98f00b204e9800998ecf8427e" type="text/css">\n<table class="forumline borderline"  id="abPreviewTbl" width="100%" cellpadding="0" cellspacing="0"><tr><TH class="thCornerL">Topic<'+'/TH><TH class="thCornerR">Forum<'+'/TH><TH class="thCornerR">Replies<'+'/TH><TH class="thTop">Views<'+'/TH><'+'/TR><TR><TD class="row1 borderline topicRow"><div class="gensmall" style="clear: both;"><div id="tagUI7646482" class="genmed" style="float: right; max-width: 250px !important; text-align: right; margin-left: 5px;"><span id="tagsForTopic7646482">&nbsp;<'+'/span><'+'/div><'+'/div><a class="topictitle" style="font-weight: normal;" target="_top" href="http://www.activeboard.com/forum.spark?aBID=88694&p=3&topicID=7646482">\n&#1585;&#1587;&#1608;&#1606;&#1585;&#1610; &#1607;&#1575;<'+'/a><'+'/td><TD class="row1 borderline topicRow" style="width:105px;text-align:left;"><a class=genmed target=_top href="http://www.activeboard.com/forum.spark?aBID=88694&subForumID=270957&p=2">&#1575;&#1578;&#...<'+'/a><'+'/td><TD class="row1 borderline topicRow" style="width:40px;text-align:center;"><span class=postdetails>0<'+'/span><'+'/td><TD class="row1 borderline topicRow" style="width:40px;text-align:center;"><span class=postdetails>38<'+'/span><'+'/td><'+'/tr><TR><TD ALIGN=RIGHT COLSPAN=4 CLASS="row3"><span class="gensmall row3gensmall">Get your own free webforum: <a href="http://www.activeboard.com" target=_new style="text-decoration: none"><span class="gensmall row3gensmall">www.activeboard.com<'+'/span><'+'/a> - <'+'/span>&nbsp;<'+'/TD><'+'/TR><'+'/TABLE>');
doc.writeln('</bo'+'dy></ht'+'ml>');
doc.close();
}

document.writeln('\
<iframe scrolling=no frameborder=0 marginwidth=0 marginheight=0 width="90%" height=250 ID=pvIfrm\
	onResize="pvResize(this)"\
	src=""\
></iframe>');

document.writeln('<scr'+'ipt>\nsetTimeout(\'pvDoLoad(document.getElementById("pvIfrm"))\', 40);\n</scr'+'ipt>');
document.writeln('<scr'+'ipt>\nsetTimeout(\'pvResize(document.getElementById("pvIfrm"))\', 100);\n</scr'+'ipt>');