﻿function fnNewModalWindow(sURL, iWidth, iHeight, sScroll) {
	window.showModalDialog(sURL, window, 'dialogWidth: '+iWidth+'px; dialogHeight: '+iHeight+'px; edge: sunken; help: no; resizable: no; scroll: '+sScroll+'; status: no;')
}

function fnNewModelessWindow(sURL, iWidth, iHeight) {
	window.showModelessDialog(sURL, window, 'dialogWidth: '+iWidth+'px; dialogHeight: '+iHeight+'px; edge: sunken; help: no; resizable: no; scroll: auto; status: no;')
}

