﻿
<!--
function Tab(mod,cursor,n){
	for(i=1;i<=n;i++){
		var nav=document.getElementById(mod+i);
		var cont=document.getElementById(mod+"_"+"cont"+i);
		nav.className=i==cursor?"current":"";
		cont.style.cssText="padding:0px;margin:0px" ;
		cont.style.display=i==cursor?"block":"none";
	}
	if (3 == cursor ) {
			var t = window.frams["rssfeed_frame"].window;
			var t2 = t.document.getElementById("feed-body");
			t2.style.height = "498px"; 
		}  else {}
	
}

var time = null;
function checkDiv(){
	var t = window.frams["rssfeed_frame"].window;
	if (t != undefined) {
		var t2 = t.document.getElementById("feed-body");
		var h = t2.style.height;
		if(h != "498px"){
			t2.style.height = "498px";
			clearInterVal(time);
		} 
	}
}

$(function(){
	time = setInterVal("checkDiv()", 100);
})
//-->

