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

