  function PopUp(url,title,x,y) 
  {
   properties = "width=" + x + ",height=" + y + ",resizable=yes,scrollbars=yes";
   NewWindow = window.open(url,title,properties);
   NewWindow.focus();
  }
  function ieHighlight(id)
  {
  	document.getElementById(id).filters[0].color = "#D30C06";
  	document.getElementById(id).filters[0].strength = 6;
  }

  function ieUnHighlight(id)
  {
  	document.getElementById(id).filters[0].color = "#000000";
  	document.getElementById(id).filters[0].strength = 0;
  }
  	
