<!--
/* 
Netscape 4, Ice, Escape, Omniweb 4.2- 
    if( document.layers ) 

Explorer 4+, Opera 6+, iCab, Ice, Omniweb 4.2- 
    if( document.all ) 	

Mozilla, Explorer 5+, Opera 5+, Konqueror, Safari, iCab, Ice, OmniWeb 4.5 
    if( document.getElementById ) 
*/
var divLayer_p25g_q = 'genuineTooltip_p25g_q';
var mouseX   = 0;
var mouseY   = 0;

if( document.layers ) 
{
	document.captureEvents( Event.MOUSEMOVE );
}

document.onmousemove = GetCursor; 

function GetCursor( e ) 
{
	if( document.layers ) 
	{
		mouseX = e.pageX;
		mouseY = e.pageY;
	}
	else if( document.all ) 
	{
		mouseX = event.clientX + document.body.scrollLeft;
		mouseY = event.clientY + document.body.scrollTop;
	}
	else if( document.getElementById )
	{
	    mouseX = e.pageX;
		mouseY = e.pageY;
	}
	
	return true;
}

function GetHandle( name ) 
{
	if( document.layers ) 
	{
		return ( document.layers[name] );
	}

	if( document.all ) 
	{
		var block = eval( 'document.all.' + name + '.style' );
		
		return ( block );
	}
	
	if( document.getElementById ) 
	{
	    return document.getElementById( name ).style;
	}
}

function ShowToolTip_p25g_q() 
{
	var tip = GetHandle( divLayer_p25g_q );
	
	//tip.left = mouseX;
	//tip.top  = mouseY + 20;
	
	if( document.layers )
	{
		tip.visibility = "show";
	}
	else if( document.all )
	{
		tip.visibility = "visible";
	}
	else if( document.getElementById )
	{
	    tip.visibility = "visible";
	}
}

function HideToolTip_p25g_q()
{
	var tip = GetHandle( divLayer_p25g_q );
	
	if( document.layers )
	{
		tip.visibility = "hide";
	}
	else if( document.all )
	{
		tip.visibility = "hidden";
	}
	else if( document.getElementById )
	{
	    tip.visibility = "hidden";
	}
}
var html='';
html+='<link href="microsoftgenuine.css" type="text/css" rel="stylesheet" />';
html+='<a onmouseover="ShowToolTip_p25g_q()" onmouseout="HideToolTip_p25g_q()" target="_blank" href="http://www.microsoft.com/genuine/default.mspx?displaylang=zh-tw">Genuine</a> ';
html+='<div class="genuineLayer" id="genuineTooltip_p25g_q"><br><br><div class="genuineLayer2" >Genuine Windows® software is published by Microsoft and licensed and supported by Microsoft or an authorized licensor. Genuine software helps protect you from the risks of counterfeit software, provides you with special benefits and the experience and support you expect. Learn more by visiting www.microsoft.com/genuine.</div> </div>';
document.write(html);
// -->
