function showInNewWindow(url)
{
    var win = window.open(url,'otherWin','width=500,height=500,resizable=yes,scrollbars=yes,toolbar=yes,menubar=yes,status=yes,location=yes');
    win.focus();
    return false;
}


