// $Author: Hangning Qiu $
// $Modtime: 11/04/01 3:54a $
// $Revision: 1 $

var myie = 1;
var netsc = (document.layers);
var popdiv;

function pop(msg,width)
{
	popdiv.left = 2;
	popdiv.top  = 20;
	var pophtml ="<table border=0 cellspacing=0 cellpadding=0 bgcolor=#0066ff><tr><td><table width=" + width + " border=1 cellpadding=2 cellspacing=1 bgcolor=#0066ff>";
	pophtml += "<tr><td bgcolor='#ffff00'><font color='#ff3300'>" + msg + "</font></td></tr></table></td></tr></table>";
	if (document.all)
	{ 
		document.all("popup").innerHTML = pophtml;
		popdiv.visibility = "visible";
	} 
	else if(netsc)
	{
		popdiv.document.write(pophtml); 
		popdiv.document.close();
		popdiv.visibility = "visible";
	}
}

function Show()
{
	var mymsg = 'If you use Internet Explorer 5.x or 6.x, you will see a pull-down menu system when you click this Start button. The majority of City Web site visitors use Internet Explorer, and most of them have version 5.0 or above. Generally, Internet Explorer is much faster than other Web browsers in rendering our data services Web pages.';
	pop(mymsg, '235');
}

function Hide()
{
	popdiv.visibility = "hidden";
}

function MouseOver()
{
	var e = GetRow();
	if (e)
	{ e.style.backgroundColor = "#ffff00"; e.style.color="#ff3300";}
	var id = e.getAttribute("id");
	if (id) window.status = id;
}

function MouseOut()
{
	var e = GetRow();
	if (e) { e.style.backgroundColor = "#ffffff"; e.style.color="#000000";}
	window.status = winStatus;
}

function beSure()
{
	return confirm("Are you sure? Please either click OK to continue or cancel your action.");
}

function Init()
{
	popdiv = (netsc? document.popup : popup.style);
}