﻿/// <reference path="jquery-1.2.6.js" />

$(document).ready(function() {
	/* Set each html element with class name 
	* 'new-window' to open in a new window
	*/
	$('a.new-window').click(function(event) {
		event.preventDefault();
		window.open(this.href);
	});
});


/* ---- Clear field text ---- */
function clearText(obj, initialValue) {
	if (obj.value == initialValue)
		obj.value = '';
	else if (obj.value == '')
		obj.value = initialValue;
}