// JavaScript Document

/* Bookmark Function */
function addBookmark(url, bookmarktitle)
{
//var url= location.href; /* this is for bookmarking the current page, if possible you can  provide your own URL like (var url = "http://www.innovatemplates.com";) */
bookmarkurl = url;
//bookmarktitle="unique website templates";
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
else if ( window.sidebar ) {
window.sidebar.addPanel(bookmarktitle, bookmarkurl,"");
}
 else  {
  	 alert('Unfortunately, this browser does not support the requested action,'
 	             + ' please bookmark this page manually.');
   }
}
