// JavaScript Document

/*document.write("<link href=\"/css/print_07.css\" rel=\"stylesheet\" type=\"text/css\" media=\"print\" />");
document.write("<link href=\"/css/main_white_07.css\" rel=\"alternate stylesheet\" type=\"text/css\" title=\"white\" />");*/

document.write ("<!--[if lt IE 7.]>");
document.write ("<script defer type=\"text/javascript\" src=\"/js/pngfix.js\"></script>");
document.write ("<![endif]-->");


/**/

//############### Alternate Table Row Color #############################

/*function alternateRowColors() {
	var r,l;
	if (!document.getElementById) return
	var tb=document.getElementsByTagName("table");
	for (r=0; u<tb.length; r++) {
		if (tb[r].className=='tbl_blue_head' || tb[r].className=='tbl_gray_head') {
			tr=tb[r].getElementsByTagName("tr");
			setBG(tr);
		}
	}
} 

function setBG(myRows) {
	for (l=0; l<tr.length; l++) {
		if (l%2==0) { 
			tr[l].setAttribute('class', 'tbl_even_row');
			tr[l].setAttribute('className', 'tbl_even_row'); 
		} else {
			tr[l].setAttribute('class', 'tbl_odd_row');
			tr[l].setAttribute('className', 'tbl_odd_row'); 
		}
	}
} 

function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}

addLoadEvent(alternateRowColors);*/