﻿function aktywujSifr() {
	//
}

function pokazLinkDoWina(id_wina) {
	Lightview.show({ href: 'link_do_wina.php?id_wina='+id_wina, options: { width: 300, height: 100 }});
}

function numbersonly(e){
	var unicode=e.charCode? e.charCode : e.keyCode
	if (unicode!=8){ //if the key isn't the backspace key (which we should allow)
	if (unicode<48||unicode>57) //if not a number
	return false //disable key press
	}
}

function toCena(liczba)
{
	liczba = liczba + ''; //zeby byl string
	if(liczba.indexOf('.')==-1) {
		return liczba+',00';
	} else {	
		liczba = Math.round(liczba*100)/100;
		liczba = liczba + '';
		
		pierwsza_kropka=liczba.indexOf('.');
		return liczba.substring(0,pierwsza_kropka+3).replace(".",",");
		
	}
}
