function mOvr(src,clrOver,brdOver){ 
	if (!src.contains(event.fromElement)){ 
		src.style.cursor = 'hand'; 
		src.bgColor = clrOver;
		src.style.border = "1 solid "+brdOver;
		if(event.srcElement.tagName=='TD'){ 
 			var TDstats = src.children.tags('A')[0]; 
			window.status = TDstats;
		}
	} 
} 
function mOut(src,clrIn){ 
	if (!src.contains(event.toElement)){ 
		src.style.cursor = 'default'; 
		src.bgColor = clrIn;
		src.style.border = "1 solid "+clrIn;
	} 
} 
function mClk(src){
	if(event.srcElement.tagName=='TD'){ 
 		src.children.tags('A')[0].click(); 
	} 
}

function verifyInput(_selList,_textBox,_textArea) {
	var SI = eval(_selList+".selectedIndex");
	var SV = eval(_selList+".options[SI].value");
	var SL = eval(_selList+".options[SI].text");
	eval(_textBox+".value = SV");
	eval(_textArea+".value = SL");
} 

function popUp(url,windowName) {
	if (windowName == "") {
		windowName = "win";
	}
	window.open(url,windowName,'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=700,height=450');
}

