/**
 * JavaScript addons for starozitny
 * @author Ondra Mandik | ondramandik@gmail.com
 */

/**
	* Function for confirmation link to delete something
	*
	* @author Ondra Mandík
	* @param question string
	* @param title string
	* @return boolean
	*/
function deleteConfirm(question, title) {
	if(question == null) {
		question = 'Opravdu si toto přejete smazat?';
	}
	if(title == null) {
		title = 'Smazat';
	}
	return confirm(question,title);
}
