﻿function OpenModalReturn(pageURL, innerWidth, innerHeight)
{
    var ReturnValue = window.showModalDialog(pageURL, 'newWindows'
						, 'dialogWidth:' + innerWidth + 'px;dialogHeight:'
						+ innerHeight
						+ 'px;help:no;unadorned:no;resizable:no;status:no');

    return ReturnValue;
}