var rules = {
	'div#warnJS' : function(element){
		element.style.display='none';
	},/*	
	'a' : function(element){
		element.onclick = function() {
			this.blur();
			
		}
	}*/
	'td#col3About' : function(element){
	
		/*if (navigator.appVersion.indexOf('WebKit')>0) {			
			document.body.style.height=window.innerHeight;
			$('thetable').style.height=parseInt(window.innerHeight)-30+'px';
		}		
		else if (navigator.appVersion.indexOf('MSIE')<0) {
			document.body.style.height='100%';
			$('thetable').style.height=parseInt(document.body.offsetHeight)-30+'px';
		}	
		else {
			document.body.style.height='98%';
			$('thetable').style.height=parseInt(document.body.offsetHeight)-15+'px';
		}	*/
	}	


};
Behaviour.register(rules);	
addEvent(window, 'resize', function(event) {
	doResize();
	
});