function send(v_title, v_file)
{
    w = window.open("", "newwindow", "menubar=no,scrollbars=yes,resizable=yes,width=500,height=375");
    document.myForm.title.value = v_title;
    document.myForm.file.value = v_file;
    document.myForm.target = "newwindow";
    document.myForm.submit();
    w.focus();
}
