/********************************************************/
/*   Chgmt couleur menus - ©2003 yAro - yAronet.cOm     */
/********************************************************/

function mOvr(src) {
	src.style.cursor = 'hand';
	src.style.backgroundColor='#ffcc00';
}

function mOut(src) {
	src.style.cursor = 'default';
	src.style.backgroundColor='#f7f7f7';
}

function fOver(src) {
	src.style.cursor = 'hand';
	src.style.backgroundColor='#D2DEF0';
}

function fOut(src) {
	src.style.cursor = 'default';
	src.style.backgroundColor='#f7f7f7';
}

/********************************************************/
/*          ClickonTD  - ©2003 yAro - yAronet.cOm       */
/********************************************************/

var a=0;

function testTag(e) {
  if (window.Event) {
    elem = e.target.tagName;
  } else {
    elem = window.event.srcElement.tagName;
  }
  if (a == 1 && elem == 'TD') { a=0; window.location.href=url; url = ''; }
}

if (window.Event) { 
  document.captureEvents(Event.CLICK);
}
document.onclick = testTag;

