function OpenWindow(url){
wx = 400;
wy = 350;
x = (screen.width  - wx) / 4 + 200;
y = (screen.height - wy) / 4 + 100;
newWin_t1 = window.open(url,"mini","scrollbars=0,left="+x+",top="+y+",width="+wx+",height="+wy);
newWin_t1.focus();
}
function popJump(selOBJ) {
	n = selOBJ.selectedIndex;
	location.href = selOBJ.options[n].value;
}