


function dcs_newWin(dcs_URI,file_tlt)
{

	window.open(dcs_URI);
}
function dcs_newWinSize(dcs_URI,file_tlt,height,width)
{

	var prop = 'width=' + width + ',height=' + height + ',scrollbars=yes,resizable=yes,menubar=yes,location=yes,top=5';
	window.open(dcs_URI,'FPL',prop);
}
function dcs_sameWin(dcs_URI,file_tlt)
{

	window.open(dcs_URI,'_self');
}


function dcs_newWinQry(dcs_URI,dcs_QRY,file_tlt)
{

	window.open(dcs_URI + dcs_QRY);
}
	