var url="http://www.payatrader.com";
var title="Payatrader";

function favorites(){
if(document.all)
window.external.AddFavorite(url,title)
}

startList = function()
{
	if (document.all&&document.getElementById)
	{
		navRoot = document.getElementById("menu");
		for (i=0; i<navRoot.childNodes.length; i++)
		{
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI")
			{
				node.onmouseover=function()
				{
					this.className+=" over";
				}
				node.onmouseout=function()
				{
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;


function popUp(url) {
  newWindow=window.open(url, 'windowNew', 'width=500,height=550,status=no,toolbar=no,scrollbars=yes,menubar=no,screenX=230,screenY=80,left=230,top=80');
}

