// =============================================================================
// Datenavigator
// -----------------------------------------------------------------------------
// VERSION: 1.0.0
// -----------------------------------------------------------------------------
// Autor:				Michael Grath
// Copyright:			Michael Grath
// Erstellt am: 		22.07.2007
// Letzte Änderung am:	22.07.2007
// =============================================================================

function datenavigatorMoveOut(id) {
	document.getElementById(id).style.textDecoration = "none";
}

function datenavigatorMoveOver(id) {
  	document.getElementById(id).style.cursor = 'pointer';
	document.getElementById(id).style.textDecoration = "underline";
}

function submitDatenavigator(id, month, year) {
 // document.getElementById(id+"_Form").action = url;
  document.getElementById(id+"_selMonth").value = month;
  document.getElementById(id+"_selYear").value = year;
  document.getElementById(id+"_Form").submit();
}

