<!-- 
/*
Add Bookmark or Favorites Script
Created by Laare Rowan
Web Design Guide - www.dreamink.com 

This script may be distributed freely with comments included. 

Place this portion of the script within the <head> tag:
*/

// change the siteurl and sitetitle variables to match your website info
var pageurl=(location.href)
var pagetitle=(document.title)
var siteurl="http://www.lifechat.net"
var sitetitle="A Place to Chat on Essential Life Issues at LifeChat.Net"

function addpagebookmark(){
if (document.all)
window.external.AddFavorite(pageurl,pagetitle)
}
function addsitebookmark(){
if (document.all)
window.external.AddFavorite(siteurl,sitetitle)
}

// -->