﻿function sendTo(url)
{
    var form = document.forms[0];
    form.target = '_blank';
    form.action = url;
    form.submit();    
}
