﻿var BibleFloat = Class.create();
BibleFloat.prototype = {
	
	initialize : function () {
		this.URI = '/library/bible/xh/';
	},
	
	handle : function (ancor) {
		if (!pop)
			throw new Error('Не найдейн менеджер всплывающего окна');

		pop.handleClick(this.URI+'?text='+encodeURIComponent(ancor.innerHTML));
	}
	
}

