var s = window.location.toString();
if (s.length < 100) {
   document.write("<b>URL:</b> "+ s);
}
else {
   document.write("<b>URL:</b>"+ s.substring(1,100)+ "...");
}
