<!-- 
	function anotherWindow(form) {
if (form.location.selectedIndex> 0 )
{
	var URL=form.location.options[form.location.selectedIndex].value;
	newWin = window.open(URL, "anotherWindow", "toolbar=1,location=1,menubar=1,scrollbars=1,status=1,resizable=1,position=absolute,left=75,top=0,height=400,width=700");
	if(window.focus){newWin.focus()
	};
}
}

// -->