function __ws__(id) {
	document.write(id.text);
	id.id='';
}

function onchange_location(form) {
		switch(form.value) {
			case 'top'		:	top.location=form.options[form.selectedIndex].name;
								break;
			case 'parent'	:	parent.location=form.options[form.selectedIndex].name;
								break;
			case 'blank'	:	window.open(form.options[form.selectedIndex].name);
								break;
			case 'frame'    :       send1('7','4',form.options[form.selectedIndex].name);
								break;
			case 'survey'   :       send1('7','6',form.options[form.selectedIndex].name);
								break;
			case 'proposal' :       send1('7','7','');
								break;
			case 'card'     :       send1('7','1','');
								break;
			case 'praise'   :       send1('7','11','');
								break;
			case 'civilservice'    :       send1('7','12','');
								break;
			default			:	self.location="index.jsp";
		}
		form.selectedIndex=0;
		return;
	}