/*
* @title my bookmarklet $1
* @description for NETSCAPE-Bookmark-file-1
* @include http://*
* @license MIT License
* @require
*/
(function(){
var t=document.title;
var u=location.href;
var dt='<dt><a href="'+u+'">'+t+'</a></dt>';
prompt('',dt);
return;
})()