function popup(url, w, h) {
	newwindow=window.open(url,'PopupWindow','menubar=no,width='+ w +',height='+ h +',toolbar=no');
	if (window.focus) {newwindow.focus()}
	return false;
}

function add_to_favorites(){
	var BookmarkURL="http://www.phcqa.org"
	var BookmarkTitle="Pennsylvania Health Care Quality Alliance"
 
	// If the browser is Internet Explorer
	if (document.all)
	{
        // Add to Favorites (Internet Explorer)
        window.external.AddFavorite(BookmarkURL,BookmarkTitle)
	}
	else
	{
        // Add to Bookmarks (Mozilla Firefox)
        window.sidebar.addPanel(BookmarkTitle, BookmarkURL, ''); 
	}
}