<!-- BEGIN --

var count = 0; 
var hand = 0;
nav = (document.layers) ? true : false; 
ie  = (document.all) ? true : false;
if (nav) skin = document.topdeck;
if (ie)  skin = topdeck.style;
document.onmouseover = sustain;
if (nav) document.captureEvents(Event.MOUSEOVER);

function pop(orientation,msg) 
{

content="<font color=#FFFFFF face=Verdana, Arial size=-2>"+msg+"</font>";

if (nav) 
{
	var canvas = document.topdeck.document; 
	canvas.write(content); 
	canvas.close();
	skin.visibility = "show";
}
  else if (ie) 
{
	document.all("topdeck").innerHTML = content;
	skin.visibility = "visible";}  
	hand = orientation;
}

function sustain(e) 
{
	var x = (nav) ? e.pageX : event.x; 
	switch(hand) 
	{
		case 0 : kill(); break;
		case 1 : skin.left = 205,  skin.top = 7; break;
	}
}

function kill() 
{
	if (count >= 1 ) var always=true;
	
	if (always == true) 
	{
		hand = 0; 
		skin.visibility = (nav) ? "hide" : "hidden";
	} 
	else count++;
}
//-- END -->
