function checkForm()
{
	var inputFile = document.getElementById("file");
	if (typeof inputFile != "object" || inputFile.value == "")
	{
		alert("Wählen Sie eine Datei aus");
		return false;
	}
	return true;
}