function klik() { t = window.getSelection(); alert(typeof(t)); }
var selection = function() { if (window.getSelection) return window.getSelection(); else if (document.getSelection) return document.getSelection(); else if (document.selection) return document.selection else return false; };