function bookmark(url, description)
{
netscape="Hit CTRL+D to add a bookmark to this site.";
if (navigator.appName=='Microsoft Internet Explorer')
{
window.external.AddFavorite(url, description);
}
else if (navigator.appName=='Netscape')
{
alert(netscape);
}
}

function popup(path,x,y)
{
   window.open(path,"window","menubar=no,resizable=yes,width="+x+",height="+y+",toolbar=no,top=305,left=100,scrollbars=yes")
}

function popup2(path,x,y)
{
   window.open(path,"window","menubar=no,resizable=yes,width="+x+",height="+y+",toolbar=no,top=100,left=100,scrollbars=yes")
}

function gourl(dest)
{
	document.location.href=dest;
}

function ws(txt)
{
	window.status=txt;
}
