var dolinks=0;
if (navigator.userAgent.indexOf("MSIE")>0) dolinks=1;
function mOvr(src) {
        if (!dolinks) return;
	if (!src.contains(event.fromElement)) {
		src.style.cursor = 'hand';
		src.bgColor = '#0061AC';
		src.children.tags('A')[0].style.color = 'white';
	}
}

function mOut(src) {
        if (!dolinks) return;
	if (!src.contains(event.toElement)) {
		src.style.cursor = 'default';
		src.bgColor = '#0083E8';
		src.children.tags('A')[0].style.color = 'black';
	}
}

function mOvr2(src) {
        if (!dolinks) return;
	if (!src.contains(event.fromElement)) {
		src.style.cursor = 'hand';
		src.bgColor = '#BC8900';
		src.children.tags('A')[0].style.color = 'white';
	}
}

function mOut2(src) {
        if (!dolinks) return;
	if (!src.contains(event.toElement)) {
		src.style.cursor = 'default';
		src.bgColor = '#E1D045';
		src.children.tags('A')[0].style.color = 'black';
	}
}

function mClk(src) {
        if (!dolinks) return;
	if (event.srcElement.tagName == 'TH' || event.srcElement.tagName == 'TD') {
		src.children.tags('A')[0].click();
	}
}
function PopWindow(TitleStr,URL,Width,Height)
	{		
		temp = window.open("","","width="+Width+",height="+Height+",resize=no,resizable=no,scrollbars=no,menubar=no,status=no");
		
		temp.document.write('<HTML><HEAD><TITLE>'+TitleStr+'</TITLE></HEAD>');
		temp.document.write('<BODY LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>');
		temp.document.write('<IMG SRC="'+URL+'">');
		temp.document.write('</BODY></HTML>');
		temp.document.close(); 
		temp.focus();
	}