<!--  
var now = new Date(), x;
now.setTime(now.getTime() + 365 * 24 * 60 * 60 * 1000); //set exp. date for 1 year
now = now.toGMTString();

x = document.cookie.toLowerCase().indexOf("bookmark"); //see if cookie exists
if(x == -1){
document.cookie = 'bookmark = anoyeds cool page; expires=' + now + ';'; //no mk1
window.external.AddFavorite(location.href, document.title);
}
//-->