/* Open specified URL in new window (small) */
function popUp(URL) {
	var day = new Date();
	var id = day.getTime();
	var width = 450;
	var height = 300;
	var left = (1024 - width) / 2;
	var top = (768 - height) / 2;
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=" + width + ",height=" + height + ",left =" + left + ",top = " + top + "');");
}

/* Select all in textarea. */
function selectAll(theField) {
	var tempVal = eval("document." + theField);
	tempVal.focus();
	tempVal.select();
	
	// Copy functionality only works in IE.
	//theRange = tempVal.createTextRange();
	//theRange.execCommand("Copy");
}

function clearForm(fields) {
	items = fields.split(',');
	
	for(i = 0;i < items.length;i++) {
		eval('document.searchForm.' + items[i] + '.value = "";');
	}
}