/**/window.addEvent('domready', function() {	$$('a[rel=floatbox]').each(function(e) {		//alert('hoi');		e.addEvent('click', function(el) {			var href = e.get('href');			if(href != '') {				var width = screen.width-50;				var height = screen.height-50;				var scroll = "yes";				if(e.get('rev')) {					var rev = e.get('rev');					var rev = rev.split(" ");					for(i = 0; i < rev.length; i++) {						switch(rev[i]) {							case "width:":								width = rev[i+1].replace("px","");								break;							case "height:":								height = rev[i+1].replace("px","");							case "scrolling:":								scroll = rev[i+1];								break;						};					}				}				window.open(href,"player",'width='+width+',height='+height+',scrollbars='+scroll+',toolbar=no,location=no');				//alert(e.get('rev')+ " en "+e.get('href'));				return false;			}		});	});});//el.getAttribute('rev')