function RelatedNews()
{}
RelatedNews.prototype.GetLeftPos=function(inputObj)
{var returnValue=inputObj.offsetLeft;while((inputObj=inputObj.offsetParent)!=null){if(inputObj.tagName!='HTML')returnValue+=inputObj.offsetLeft;}
return returnValue;}
RelatedNews.prototype.GetTopPos=function(inputObj)
{var returnValue=inputObj.offsetTop;while((inputObj=inputObj.offsetParent)!=null){if(inputObj.tagName!='HTML')returnValue+=inputObj.offsetTop;}
return returnValue;}
RelatedNews.prototype.Close=function()
{document.getElementById('Related').style.visibility='hidden';}
RelatedNews.prototype.AjaxCB=function(in_responseText,in_param,in_param2)
{document.getElementById('Related').innerHTML=in_responseText;height=(document.getElementById('Related_content').offsetHeight+12);if(height<150)
height=150;document.getElementById('Related').style.height=height+"px";}
RelatedNews.prototype.Show=function(id,filter)
{if(filter==undefined)
filter='';obj=document.getElementById('r'+id);document.getElementById('Related').style.height="250px";document.getElementById('Related').innerHTML='<a style="font-family:Arial; font-size:9px;font-weight:normal;position:absolute;top:-0px;float:right" href="javascript:g_relatedNews.Close()">close</a><img src="http://www.techpowerup.com/images/ajax-loader.gif" alt="Loading..." width="32" height="32" style="position:relative;left:165px;top:110px" />';g_ajax_obj.CallXMLHTTPObjectGETParam("http://www.techpowerup.com/index.php?rel="+id+"&filter="+filter,g_relatedNews.AjaxCB);document.getElementById('Related').style.top=(this.GetTopPos(obj)+15-this.GetTopPos(document.getElementById("content")))+"px";document.getElementById('Related').style.left=(this.GetLeftPos(obj)-this.GetLeftPos(document.getElementById("content")))+"px";document.getElementById('Related').style.visibility="visible";}
RelatedNews.prototype.ShowIcon=function(id,filter)
{if(filter==undefined)
filter='';obj=document.getElementById('i'+id);document.getElementById('Related').style.height="250px";document.getElementById('Related').innerHTML='<a style="font-family:Arial; font-size:9px;font-weight:normal;position:absolute;top:-0px;float:right" href="javascript:g_relatedNews.Close()">close</a><img src="http://www.techpowerup.com/images/ajax-loader.gif" alt="Loading..." width="32" height="32" style="position:relative;left:165px;top:110px" />';g_ajax_obj.CallXMLHTTPObjectGETParam("http://www.techpowerup.com/index.php?icon="+id+"&filter="+filter,g_relatedNews.AjaxCB);document.getElementById('Related').style.top=(this.GetTopPos(obj)+15-this.GetTopPos(document.getElementById("content")))+"px";document.getElementById('Related').style.left=(this.GetLeftPos(obj)-this.GetLeftPos(document.getElementById("content")))+"px";document.getElementById('Related').style.visibility="visible";}
g_relatedNews=new RelatedNews();