function search () {
	if(length){
		var i;
		for(i=0;i<length;i++){
			Q=frames[i].document.selection.createRange().text;
			if(Q){break;}
		 }
	}
	else{
		Q=document.selection.createRange().text;
	}
	if(!Q){
		void(Q=prompt('Enter a required fragment of the text:',''));
	}
	if(Q){
		Q=Q.substr(0,100);
		void(open('http://www.google.ru/search?as_q='+Q+'&as_sitesearch='+document.location.hostname+'/'));
	}
}

function msgDelete ( entry ) {
	if (window.confirm("You are assured that really wish to execute REMOVAL?")) {
		window.location.href = ""+entry+"&"
	}
}

function popup (entry) {
	window.open(""+entry+"", "", 'width=650, height=600, status=0, menubar=0, location=0 resizable=1 scrollbars=1 directories=0 toolbar=1');
}

function writeCookie(name, value)
{
	var expire = "";
	expire = new Date("January 1, 2025");
	expire = "; expires=" + expire.toGMTString();
  
  	document.cookie = name + "=" + escape(value) + "; Path=/; " + expire+ ";";
  	window.location=window.location.href;
}
