
function openWin(sDoc, iHt, iWd, sTB)
	{
	var sOption = 'scrollbars=' + sTB + ',resizable=' + sTB + ',toolbar=' + sTB + ',menubar=' + sTB + ',status=' + sTB + ',height=' + iHt + ',width=' + iWd;
	window.name='DbMusic';
	window.open(sDoc, 'Other', sOption);
	}
