function createBookmarkLink(title, url) {
try {
	if (window.sidebar) { // Mozilla Firefox Bookmark
		return window.sidebar.addPanel('' + title + '', '' + url + '', "");
	} else if( window.external ) { // IE Favorite
		return window.external.AddFavorite('' + url + '', '' + title + ''); 
	} else if(window.opera && window.print) { // Opera Hotlist
		return true; 
	}
} catch(err) {
	// do nothing
	alert(err.description);
}
alert('Could not create a bookmark on your client.\n\nTo return to GratiSMS.eu you must manually create a bookmark to: \n www.gratisms.eu');
}