document.write(this.document.name.substring(0, 1));
var title = document.title; alert(title); alert(title.charAt(0));
var title = document.URL; alert(title); alert(title.charAt(0));
document.URL.replace(/.*\//, '').charAt(0)
alert(location.pathname.charAt(0));