function mouseovertd (o){
	o.style.cursor="hand";
	o.style.borderStyle="solid"
	o.style.borderColor="#999999"
	o.style.backgroundColor= "#CCCCCC";
		
}

function mouseouttd (o){
	o.style.backgroundColor= "#dedede";
	o.style.borderColor="#dedede"
	o.style.color="#000000"	
}

//td

function mOvr(src,clrOver,clrOver1) {
	if (!src.contains(event.fromElement)) 
	{
	src.style.cursor = 'default'; src.bgColor = clrOver;
	src.style.color = clrOver1;
	}
}
function mOut(src,clrIn,clrIn1) {
	if (!src.contains(event.toElement))
	{
	src.style.cursor = 'default'; src.bgColor = clrIn; 
	src.style.color = clrIn1;
	}
}

//runEx

function runEx(){

var winEx = window.open("", "winEx", "width=300,height=200,status=yes,menubar=yes,scrollbars=yes,resizable=yes"); winEx.document.open("text/html", "replace"); 
winEx.document.write(unescape(event.srcElement.parentElement.children[2].value)); 
winEx.document.close(); 
}