<!--
var yes_color_m=0;
if ((navigator.appName.indexOf('Microsoft')>=0) && (parseInt(navigator.appVersion) >= 4))
	yes_color_m=1;
function event_over
( obj, txt )
{
	if ( yes_color_m==1 ) obj.style.color = 0xff9933;
	window.status=txt;
	return true;
}
function event_out
( obj )
{
	if ( yes_color_m==1 ) obj.style.color = 0xcc6600;
	window.status="";
	return true;
}
//-->
