var activeColor = '#FF0000';
var restColor = '#F2F0D2';

//////////////////////////////
function onLoadList()
{
  externalLinks();
}
//////////////////////////////
function currentButton(bttn,state)
{
if (!document.getElementById) return;
 if (state) {
  document.getElementById(bttn).style.background=activeColor;
 } else {
  document.getElementById(bttn).style.background=restColor; 
 }
}

///////////////////////////////
function pop (URL,W,H)
{
  popwindow = window.open(URL,'popwin','height=' + H + ',width=' + W + ',scrollbars=1,toolbar=0,menubar=1,statusbar=0,locationbar=1,resizable=1');
  popwindow.focus();
}
///////////////////////////////
function imagePop (URL,W,H,ImagePath,Caption)
{
  //	alert(URL + ' - ' + W + ' - ' + H + ' - ' + ImagePath + ' - ' + Caption);
  imgpopwindow = window.open(URL + '?i=' + ImagePath + '&c=' + Caption,'imgpopwin','height=' + H + ',width=' + W + ',scrollbars=1,toolbar=0,menubar=1,statusbar=0,locationbar=1,resizable=1');
  imgpopwindow.focus();
}
//////////////////////////////
function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}