function move_multiple(from, to, all) {
	from_list = eval('document.forms[0].' + from);
	to_list = eval('document.forms[0].' + to);
	for (i = 0; i < from_list.options.length; i++) {
		var current = from_list.options[i];
		if (current.selected || all == 1) {
			to_list.options[to_list.length] = new Option(current.text, current.value);
			from_list.options[i] = null;
			i--;
		}
	}
}
function all_select(from) {
	list = eval('document.forms[0].' + from);
	count = list.options.length;
	for (i = 0; i < count; i++) {
		eval('document.forms[0].hidden_' + from + '.value += ' +
			'list.options[i].value + (count - 1 == i ? \'\' : \'|\')');
	}
}
function open_pic(pic_location, page_title, pic_width, pic_height) {
	var imgVar = new Image ();
	imgVar.src = pic_location;
	newWin = window.open ('', 'pic_window', 'height=' + pic_height + ',width=' + pic_width + 
		',top=20,left=20,resizable=no');
	newWin.document.write ('<html><head><title>' + page_title + '</title></head>');
	newWin.document.write ('<body style="margin: 0px; text-align: center; vertical-align: middle">');
	newWin.document.write ('<a href="javascript:window.close()"><img src="' + pic_location + '" height="' + 
		pic_height + '" width="' + pic_width + '" name="im" border="0"></a></body></html>');
	newWin.document.close ();
}