/* <![CDATA[ */
function fade(id,param){ /* parameter: in - out */
  if(param=="in"){
    document.getElementById(id).style.filter='Alpha(opacity=60)';
    document.getElementById(id).style.MozOpacity='0.60';
  }else if(param=="out"){
    /*item_id.style.filter='Alpha(opacity=50)';*/
    document.getElementById(id).style.filter='none';
    document.getElementById(id).style.MozOpacity='1';
  }
}

function openWind(WindUrl,WindTitle,width,height){
  Wind1=window.open(WindUrl, WindTitle, "width="+width+",height="+height+",resizable=yes, scrollbars=yes, menubar=yes, toolbar=yes");
  Wind1.focus();
}
/* ]]> */
