var AddFavorite = "FreeGraphics,Hypergurl"; 
/*function addToFavorites() 
{

	urlAddress=window.location;
	if(window.external) 
	{
 		window.external.AddFavorite(urlAddress,AddFavorite)
	}
	else
 	{ 
		alert("Sorry! Your browser doesn't support this function.");
	}
} */

 function addToFavorites() {

 title = "Webpage Title"; 
  // Blogger - Replace with <$BlogItemTitle$> 
  // MovableType - Replace with <$MTEntryTitle$>

 url = window.location;
  // Blogger - Replace with <$BlogItemPermalinkURL$> 
  // MovableType - Replace with <$MTEntryPermalink$>
  // WordPress - <?php bloginfo('url'); ?>

	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) { // Opera Hotlist
			return true;
		}
 }

 

function emailPopupBox() 
{
	newWindow=window.open("emailthispage.php",'name','height=350,width=400,left=300,top=200');
	if (window.focus) 
	{
		newWindow.focus();
	}

}


 


