//var domain = "http://localhost/Traximus/";
var domain = "http://traximus.com/";

var MakePrePopulatedTextBox = function(textBox, text) {
	if(!textBox.hasClass('prePopulatedTextBox'))
	{
		textBox.addClass('prePopulatedTextBox');
		textBox.value = text;
		textBox.addEvent('click', function(){
			this.removeClass('prePopulatedTextBox');
			this.value = null;
		});
	}
}