function openTarget( form, features, windowName )
{
    if( !windowName )
        windowName = 'formTarget' + (new Date().getTime());
    form.target = windowName;
    open('', windowName, features);
}
