function ActivateMenue(Nr)
{
	window.document.getElementsByName("menue"+Nr)[0].style.color = "#D1EA1F";
//	document.getElementsByName("menue"+Nummer)[0].style.color = "#00244E";
}

function ChangeImages(NewImageSrc1)
{
	window.document.getElementById("image").src = "img/"+NewImageSrc1;
}

function OpenImage(img)
{
	var win = window.open("openimage.php?img="+img, "_blank", "scrollbars=no");
}

function RouteSearch()
{
	var fromstreet = document.geaplanRouteForm.fromstreet.value;
	var fromplz = document.geaplanRouteForm.fromplz.value;
	var fromcity = document.geaplanRouteForm.fromcity.value;
	var fromcountry = document.geaplanRouteForm.fromcountry.value;
	
	var tostreet = "Industriestraße 7";
	var toplz = "26188";
	var tocity = "Edewecht";
	var tocountry = "DEU";
	
	var planer = "map24";
	
	var url = "http://portale.web.de/Auto/Routenplaner/?fromstreet=" + fromstreet + "&fromplz=" + fromplz + "&fromcity=" + fromcity + "&fromcountry=" + fromcountry + "&tostreet=" + tostreet + "&toplz=" + toplz + "&tocity=" + tocity + "&tocountry=" + tocountry;
	  
	window.open(url);
}

function OpenReferenz(ID)
{
	var width = 600;
	var height= 430;
	var win = window.open("refdetails.php?ID="+ID, "Referenzen", "width="+width+",height="+height+",scrollbars=no");
	win.moveTo((screen.width - width)/2, (screen.height-height)/2);
}

function OpenGalerie(ID)
{
	var width = 600;
	var height= 430;
	var win = window.open("bilddetails.php?ID="+ID, "Bildergalerie", "width="+width+",height="+height+",scrollbars=no");
	win.moveTo((screen.width - width)/2, (screen.height-height)/2);
}

function OpenInfo(ID)
{
	var width = 440;
	var height= 620;
	var win = window.open("shopInfo.php?ID="+ID, "Artikelinformation"+ID, "width="+width+",height="+height+",scrollbars=yes");
	win.moveTo((screen.width - width)/2, (screen.height-height)/2);
}
