// JavaScript Document
// zastępuje target=_blank
function targetBlank(el){
    var ref=el.get("href");
 	window.open(ref);
}
/*
var FormFocus = new Class({
	initialize : function(){
			this.el=$('chb2');
			this.value = this.el.get("value");
	},
	exec : function(){
		var value = this.value;
		var val = value;
		this.el.set('value',val);	
		console.log(val);
		
			this.el.addEvent('focus',function(){
						val = this.get('value');
						this.set('value','');	
				 });
			this.el.addEvent('change',function(){
						val = e.target.get('value');
				 });
			
			this.el.addEvent('blur',function(e){
						val = this.value;
						
			}.bind(this));
	}
});
	
*/
