if (navigator.appVersion.indexOf("2.") != -1){
         check = false;
	 }
if ((navigator.appVersion.indexOf("3.") != -1) && (navigator.appName.indexOf("Explorer") != -1)){
	 check = false;
	 }
else {
	 check = true;
	 }
if (check == true){
	 image1 = new Image();
	 image1.src = "/img/img_home_00.gif";
	 image1on = new Image();
	 image1on.src = "/img/img_home_01.gif";
}
imageStay = ""

function imageon(name){
	 if (imageStay != name){
			 document[name].src = eval(name + "on.src");
	 }
}
function imageoff(name){
	 if (imageStay != name){
			 document[name].src = eval(name + ".src");
	 }
}

function on(name){
	 if (check == true){
	 imageon(name);
	 }
}
function off(name){
	 if (check == true){
	 imageoff(name);
	 }
}
function back()
{
	history.back();
}
function changeColorMode(color) 
{
	  if (document.all)
	  document.all.Mode.style.backgroundColor = color;
	  else if (document.documentElement)
	  document.getElementById("Mode").style.backgroundColor = color;
}
function changeColorWaesche(color) 
{
	  if (document.all)
	  document.all.Waesche.style.backgroundColor = color;
	  else if (document.documentElement)
	  document.getElementById("Waesche").style.backgroundColor = color;
}
function changeColorBaby(color) 
{
	  if (document.all)
	  document.all.Baby.style.backgroundColor = color;
	  else if (document.documentElement)
	  document.getElementById("Baby").style.backgroundColor = color;
}
function changeColorImprint(color) 
{
	  if (document.all)
	  document.all.Imprint.style.backgroundColor = color;
	  else if (document.documentElement)
	  document.getElementById("Imprint").style.backgroundColor = color;
}
