//Copyright 2007, Howling Dynamo, Inc. or its suppliers. All Rights Reserved. http://www.hdyn.com/wr/common/contact.php?addr=pr
var g_userDir="";
var g_userRule=null;
var g_defaultGreys=[204,102];
var g_userGreys=[204,102];
var g_infos=null;
var g_pgTitle="";
var g_tai=0;
var g_imgAppendices=new Array();
var g_ppid="";
var g_words="";
var g_contactAddr="";
function loadPersonInfo(){
g_userRule=getCSSRules(0)[0];
getJS();
}
function getCSSRules(i){
var _2=document.styleSheets[i];
var _3=null;
if(typeof _2.cssRules!="undefined"){
return _2.cssRules;
}
if(typeof _2.rules!="undefined"){
return _2.rules;
}
return null;
}
function setTheGrey(x,_5){
if(g_userRule==null){
return;
}
if(x>255){
x=255;
}else{
if(x<0){
x=0;
}
}
if(_5){
g_userGreys[1]=x;
g_userRule.style.color="rgb("+x+","+x+","+x+")";
}else{
g_userGreys[0]=x;
g_userRule.style.backgroundColor="rgb("+x+","+x+","+x+")";
}
}
function defaultGreys(){
setTheGrey(g_defaultGreys[0],false);
setTheGrey(g_defaultGreys[1],true);
}
function buildTD(a,va,_8){
var td=document.createElement("td");
if(a!=null){
td.setAttribute("align",a);
}
if(va!=null){
td.setAttribute("valign",va);
}
if(_8!=null){
td.appendChild(_8);
}
return td;
}
var g_open=[null,null];
function toggleOb(ob,_b){
if(typeof ob=="string"){
ob=document.getElementById(ob);
}
if(g_open[0]==null){
g_open[0]=ob;
ob.style.display="block";
}else{
if(g_open[1]!=null){
g_open[1].style.backgroundColor="";
g_open[1]=null;
}
g_open[0].style.display="none";
if(g_open[0]==ob){
g_open[0]=null;
}else{
g_open[0]=ob;
ob.style.display="block";
}
}
if(ob.style.display=="block"&&_b!=null){
_b.style.backgroundColor="#efe";
g_open[1]=_b;
}
return ob;
}
