// =============================================================================
// Downloadsbot
// -----------------------------------------------------------------------------
// VERSION: 1.0.0
// -----------------------------------------------------------------------------
// Autor:				Michael Grath
// Copyright:			Michael Grath
// Erstellt am: 		09.06.2007
// Letzte Änderung am:	09.06.2007
// =============================================================================

// -----------------------------------------------------------------------------
// Diese Funktion wird bei onMouseOver- und onMouseOut-Events ausgeführt, um die
// farbige Hinterlegung jenes Download-Elements zu ermöglichen, welches gerade
// ausgewählt ist.
// -----------------------------------------------------------------------------
function downloadMoveOut(id) {
	document.getElementById(id).style.backgroundColor = "";
}

function downloadMoveOver(id) {
  	document.getElementById(id).style.cursor = 'pointer';
	document.getElementById(id).style.backgroundColor = "rgb(200, 214, 224)";
}

// -----------------------------------------------------------------------------
// Wird auf ein Download-Element geklickt, so wird diese Funktion ausgeführt und
// der Link zum Download geöffnet.
// -----------------------------------------------------------------------------
function clickDownload(url, target) {
if (target == "_blank")
    	window.open(url);
  	if (target == "_self")
    	window.location.href(url);	
}

