/***************************
     STYLESHEET-WAHL
***************************/
var css_url = "euron.css";


function teste (inv, mind)
{
	var zeichen = '&bull;'		// Zeichen, das ausgeschrieben wird

	if (inv == '') inv = 0;
	if (mind == '') mind = 0;

	var inventur = parseInt(inv);
	var mindestbestand = parseInt(mind);
	var ausgabe = '';

	if ((inventur >= mindestbestand) && (inventur != 0)) ausgabe = '<font color=#00DD00>'+zeichen+'</font>'
	else if ((inventur >= 0) && (inventur < mindestbestand)) ausgabe = '<font color=#FFBB00>'+zeichen+'</font>'
	else ausgabe = '<font color=#EE0000>'+zeichen+'</font>';

	return (ausgabe)
}
