function popUpPF(link){
   var mWidth=620;
   var mHeight=600;
   var mLeft=(screen.width - (mWidth)-10);
   var mTop=5;
   window.open(link, "winPop","scrollbars=no,toolbar=no,menubar=no,resizable=no,width="+mWidth+"px,height="+mHeight+"px,top="+mTop+"px,left="+mLeft+"px");
}

function menuInitialize(){
   //do nothing
}


/*
function CMS5_3col_stretch(){
   //txtLargest = $("TxT").offsetHeight;
   col1 = $("pos_leftMenu");
   col2 = $("pos_story");
   col3 = $("pos_sidebar");
   div1 = col1.offsetHeight;
   div2 = col2.offsetHeight;
   div3 = col3.offsetHeight;
   

   var largest = 0;
   if (div1 > div2) {
      if (div1 > div3) {
         largest = div1;
      }
      else {
         largest = div3;
      }
   }
   else {
      if (div2 > div3) {
         largest = div2;
      }
      else {
         largest = div3;
      }
   }

   //if (txtLargest > largest) {
      //largest = txtLargest;
   //}
   col1.style.height = largest;
   col2.style.height = largest;
   col3.style.height = largest;   
}

window.onload = CMS5_3col_stretch;
window.onresize = CMS5_3col_stretch;

*/