function Jump(PJ)
{
	n = PJ.selectedIndex;
	location.href = PJ.options[n].value;
}

var win = window;
function openWindow(url, w, h) {
    var setting = 'width=' + w + ',height=' + h + ',status=yes,scrollbars=no,resizable';
    if(win.closed || win == window){
        win = window.open(url, "popWindow", setting);
        win.location.href = url;
    }
    win.focus();
    return (false);
}