function openWindow(sUrl, iWidth, iHeight, sTarget, bResizeable, bScrollBars, bMenuBar, bStatus ) {
	if (iWidth == null) { iWidth = 450 }
	if (iHeight == null) { iHeight = 300 }
	if (bScrollBars == null) { bScrollBars = 1 }
	if (bResizeable == null) { bResizeable = 1 }
	if (bScrollBars == null) { bScrollBars = 1 }
	if (bMenuBar == null) { bMenuBar = 0 }
	if (bStatus == null) { bStatus = 0 }
	if (sTarget == null) { sTarget = '_blank' }

    var Win = window.open(sUrl,sTarget,'width=' + iWidth + ',Height=' + iHeight + ',resizable=' + bResizeable + ', scrollbars=' + bScrollBars + ',menubar=' + bMenuBar + ',status=' + bStatus );
}	

function openWindowNew(sUrl)
{
    var Win = window.open(sUrl);
}

