// JavaScript Document
var modal;
function destroyModal(){
	if(typeof(modal) == 'object'){
    	modal.destroy();
	}	
}
function checkAnzahl(anz){
	//destroyModal();
	var msg;
	if (isNaN(anz)){ 
		msg = 'Tragen Sie bitte eine Zahl ein.';
	} else if(anz > 100){ 
		msg = 'Es sind maximal 100 der Anzahl erlaubt.';
	} else {
		return true;
	}
	alert(msg);
	/*modal = new FbModal({
        'parentEl': 'modal',
        'title': 'Anzahl',
        'subTitle': '',
        'content': msg,
        'height' : 30,
        'width' : 340
    });*/
	return false;
}
function Message(t,m){
	alert(m);
	/*modal = new FbModal({
        'parentEl': 'modal',
        'title': t,
        'subTitle': '',
        'content': m,
        'height' : 30,
        'width' : 340
    });*/
}
