/*****************************************************************************
* Create a new window with the specified URL and dimensions(optional).
* The window defaults to 800x500.
* Overloaded function signature:
*   openNewWindowAt(url [, width [, height]])
*****************************************************************************/
function openNewWindowAt()
{
    var url = arguments[0];
    var width = arguments[1];
    var height = arguments[2];
    
    if (width == null)
        width = 800;
    if (height == null)
        height = 500;
        
    return window.open(url, 'blank', 'toolbar=no, width=' + width + ', height=' + height + ', scrollbars=yes, resizable=yes');
}

function moveCursorToEnd(textBox)
{
    if (textBox.createTextRange)
    {
        var FieldRange = textBox.createTextRange();
        FieldRange.moveStart('character', textBox.value.length);
        FieldRange.collapse();
        FieldRange.select();
    }
}
