﻿function CreateBookmarkLink() {
title = "telugu thesis";
url = "http://teluguthesis.com/";
if (window.sidebar) {
// Mozilla Firefox Bookmark
alert("browser is firefox compatible!");
window.sidebar.addPanel(title, url,"");
} else if( window.external ) {
// IE Favorite
alert("browser is IE compatible");
window.external.AddFavorite(url, title);
}
else if(window.opera && window.print) {
// Opera Hotlist
return true; }
}