function RemoveKurz(kurz)
{	var url='sbmt/pcalc_delcourse_sbmt.php?course_index='+kurz;
	window.location.href=url;
}

function formatCurrency(nStr)
{
	/*
	nStr += '';
	x = nStr.split('.');
	x1 = x[0];
	x2 = x.length > 1 ? '.' + x[1] : '';
	var rgx = /(\d+)(\d{3})/;
	while (rgx.test(x1)) {
		x1 = x1.replace(rgx, '$1' + '.' + '$2');
	}
	return x1 + x2;
	*/
	return nStr;
}
function PrintCalc()
{	pk = document.forms.price_calculator;
	kurz=pk.kurz_meny.value;
	mena=pk.kurz_meny.options[pk.kurz_meny.selectedIndex].text;
	W=800;
	H=600;
	window.open('/module/cenovy-kalkulator-print.php?kurz='+kurz+'&mena='+mena,'','width='+W+',height='+H+',left='+((screen.width-W)/2)+',top='+((screen.height-H)/2)+'');
}
