var nt982 = 0;

function disableallclicks() {
	return false;
}
var src;
if (document.all) {
	for(i = 0; i < document.all.length; i++){
        	if (document.all(i).tagName=="SPAN"||document.all(i).tagName=="TD") {


	        	if (document.all(i).className=="FPMenu") {

				src = document.all(i);

				col = src.children;

				for (j = 0; j < col.length; j++) {

					if (col[j].tagName=="A") {
//						col[j].onclick=disableallclicks;
						col[j].href='http://www.p2es.com/tobin_message.htm';
					}
				}

			}
                }
	}		    
} else {

	var elms = document.getElementsByTagName("*");

	for(i = 0; i < elms.length; i++){

        	if (elms[i].tagName=="SPAN"||elms[i].tagName=="TD") {

	        	if (elms[i].className=="FPMenu") {

				src = elms[i];

				col = src.childNodes;

				for (j = 0; j < col.length; j++) {

					if (col[j].tagName=="A") {
//						col[j].onclick=disableallclicks;
						col[j].href='http://www.p2es.com/tobin_message.htm';
					}
				}

			}
                }
	}		    

}