//Copyright 2007, Howling Dynamo, Inc. or its suppliers. All Rights Reserved. http://www.hdyn.com/wr/common/contact.php?addr=pr
var g_infoOb=null;
var g_erase=true;
var g_xfrTimer=typeof SSTimer=="undefined"?null:new SSTimer("g_xfrTimer",lightXfr,dimXfr,3000);
function xfrComm(s){
g_erase=arguments.length<2||arguments[1];
var _2=g_infoOb;
if(typeof s=="string"){
if(s==""){
return;
}
var _3=document.createElement("div");
_3.innerHTML=s;
s=_3;
}
if(_2.firstChild!=null){
_2.replaceChild(s,_2.firstChild);
}else{
_2.appendChild(s);
}
if(typeof _2.scrollTop!="undefined"&&okScroll(null)){
_2.scrollTop=32000;
}
if(g_xfrTimer!=null){
g_xfrTimer.run();
}
window.scrollTo(0,0);
}
var g_okScroll=true;
function okScroll(ok){
if(ok!=null){
g_okScroll=ok;
}
return g_okScroll;
}
function lightXfr(){
if(g_infoOb!=null){
g_infoOb.style.backgroundColor="#fed";
}
}
function dimXfr(){
if(g_infoOb==null){
return;
}
g_infoOb.style.backgroundColor="#eee";
if(g_erase&&g_infoOb.firstChild!=null){
g_infoOb.removeChild(g_infoOb.firstChild);
}
}
