/* Shared.js */
var RTI;
if(!RTI) RTI = {};

window.addEvent('domready', function() {
	if($('hosting-agreement') || $('acceptable-use-policy')) {
			$$('.legal-link').addEvent('click', function(e) {			
			new Event(e).stop();
			var url = this.getProperty('href');
			var mywindow = window.open(url, 'mywindow', 'location=no,status=no,scrollbars=1,toolbar=no,menubar=no,directories=no,width=580,height=600');
		});
	}

	$$('.text-input').addEvent('focus', function(e) {
	
		this.set('tween', {
			duration: '700'
		});

		this.tween('background-color', '#fffbd0', '#ffffff');
	});
	

});
