<!--
var childWin = new Object();
var winwin;

function populace(url)
{
    winwin=window.open(url,"poppypoppop","height=300,width=430,scrollbars=1,resizable=1,toolbar=1");
	if (window.focus) { winwin.focus() }
}

function openWin(file)
{
    childWin.win = window.open(file, "child", "toolbar=yes,width=430,height=300,status=no,scrollbars=yes,resizable=yes,menubar=no,location=no");
    if (window.focus) { childWin.win.focus() }
}

function addtofavorite(httpStr)
{
    if (navigator.appName!="Netscape")
    {
        window.external.AddFavorite(httpStr, "Lim & Wang Acupuncture and Oriental Medicine");
    }
    else
    {
        window.location = httpStr;
    }
}
// -->
