function OpenWindow(url, height, width)
{
    details=window.open(url, 'details', 'width=' + width + ',height=' + height + 'resizable,scrollbars');
    details.moveTo(0,0);
    details.focus();
}

function viewProfile(n)
{
        window.open(n, 'ViewProfile', 'height=400, width=380, scrolling=yes, scrollbars=no, toolbar=no');
}
