/* mod login */

function loginPolje(status) {
	if (status == "show") {
		jQuery("#login").show()
		jQuery("#cms").show()
		jQuery("#fleha").fadeIn("slow")
		jQuery("#user").focus();
	}
	else {
		jQuery("#login").hide()
		jQuery("#cms").hide()
		jQuery("#fleha").fadeOut("slow")
	}
}

	
document.onkeydown=function(e){
	if (window.event) {
		if (window.event.keyCode == 18) {
			altr = true;
		}
	}
	else {
		if (e.which == 18) {
			altr = true;
		}		
	}
	
	if (altr == true) {
		if (window.event) {
			if (window.event.keyCode == 89) {
				loginPolje('show');
				altr = false;
			}
		}
		else {
			if (e.which == 89) {
				loginPolje('show');
				altr = false;
			}			
		}
	}
}

function prijavi() {
	document.formaPrijavi.submit();
}

function spremeniStatusAdmin(status) {
	jQuery("#fleha").fadeOut();
	ajaxRedirect("namestitev/moduli/mod_login/proces.php?id=spremeniStatusAdmin");
}

function odjava() {
	ajaxRedirect("namestitev/moduli/mod_login/proces.php?id=odjavaAdmin");
}
