function jumpMenu(name){
	eval("window.location='" + name.options[name.selectedIndex].value + "'");
}

function open_window(url) {
    var NEW_WIN = null;
    NEW_WIN = window.open("", "Comments", "toolbar=no,width=600,height=450,directories=no,status=yes,scrollbars=yes,resize=yes,menubar=no");
    NEW_WIN.document.location.href = url;
}

function help_card(url) {
    var NEW_WIN = null;
    NEW_WIN = window.open("", "Help", "toolbar=no,width=250,height=350,directories=no,status=no,scrollbars=yes,resize=yes,menubar=no");
    NEW_WIN.document.location.href = url;
}

function AddEmoticon(NewCode) {
    window.document.form.message.value = window.document.form.message.value + NewCode +  " ";
    window.document.form.message.focus();
}