function openWindowNonmodal(url, width, height)
{
window.open(url, "nonmodal_"+Math.round(10000*Math.random()),
"width=" + width + ",height=" + height + ",resizable=no,scrollbars=no,status=0");
}

