// JavaScript Document

var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}

function popUp(url, w, h) {
	leftPosition = (screen.width) ? (screen.width - w) / 2 : 0;
	topPosition = (screen.height) ? (screen.height - h) / 2 : 0;
	settings = 'height=' + h + ',width=' + w + ',left=' + leftPosition + ',top=' + topPosition + ',toolbar=0,scrollbars=no,location=0,statusbar=0,menubar=no,noresize';
	pop_up = window.open(url, 'popupwin', settings);
}

function jump(form) {
var myindex=form.menu.selectedIndex
if (form.menu.options[myindex].value != "0")
{
window.open(form.menu.options[myindex].value,
target="iframe");
}
}