// ********************************************************************************************************************************
// * JavaScript - Funktionsbibliothek (Benutzerspezifisch)                                                                        *
// * FocusNet GmbH                                                                                                                *
// ********************************************************************************************************************************



// Scrollfunktionen
// Parameter: 	keine
// Rückgabe: 	keine
// ********************************************************************************************************************************
function ScrollUp() {   
	document.getElementById("scroll").scrollTop -= 1;
}

function StartScrollUp() {   
	ScrollAction = window.setInterval("ScrollUp()", 2);
}

function ScrollDown() {   
	document.getElementById("scroll").scrollTop += 1;
}

function StartScrollDown() {   
	ScrollAction = window.setInterval("ScrollDown()", 2);
}

function StopScroll() {   
	window.clearInterval(ScrollAction);
}
// ********************************************************************************************************************************



// PopUp öffnen
// Parameter: 	Bild (String), Produkt-ID (int)
// Rückgabe: 	keine
// ********************************************************************************************************************************
var prodNow;
function showImg(imgFile, productID) {   
	if(prodNow != productID){
		prodNow = productID;
		document.getElementById("popImg").src = "uploads/"+imgFile;
		document.getElementById("popDiv").style.display = "block";
	}else{
		prodNow = "";
		document.getElementById("popDiv").style.display = "none";		
	}
}

function popClose() {   
	document.getElementById("popDiv").style.display = "none";
	prodNow = "";	
}
// ********************************************************************************************************************************