// JavaScript Document
function checkHours(url){
	var jetzt = new Date();
	var Std = jetzt.getHours();
	if (Std >= 18 || Std < 6) {
    if(url == "index"){	
			location.href = "login.asp";
		} else {
			
		}
	} else {
		if(url == "index"){

		} else {
	  	location.href = "index.asp";
	  }
	}
}