function OpenImageWindow(link, breite, hoehe){
		if (breite < 200)
			breite = 200;
		params = "width = " + (breite) + " ,height = " + (hoehe+48) + " ,left = 50 ,top = 50" ;
		iw = window.open(link, "ImageWindow" , params);
		iw.focus();
}

function OpenImageWindow2(link, breite, hoehe){
		window.location = link;
		if (breite < 200)
			breite = 200;
		window.resizeTo(breite+10, hoehe+77);
}

function OpenHerstellerWindow(link){
		params = "width = 400 , height = 350, left = 50 ,top = 50";
		hw = window.open(link, "HerstellerWindow" , params);
		hw.focus();
}

function OpenModelleWindow(link){
		params = "width = 620 , height = 500, left = 50 ,top = 50, scrollbars = yes";
		modw = window.open(link, "ModelleWindow" , params);
		modw.focus();
}

function OpenMotorenWindow(link){
		params = "width = 570, height = 400, left = 50 ,top = 50, scrollbars = yes";
		motw = window.open(link, "MotorenWindow" , params);
		motw.focus();
}

function OpenSpeziWindow(link){
		params = "width = 420 , height = 370, left = 50 ,top = 50, scrollbars = yes";
		spezw = window.open(link, "SpeziWindow" , params);
		spezw.focus();
}

function OpenAnfrageWindow(link){
		params = "width = 610, height = 510, left = 50 ,top = 50, scrollbars = yes";
		spezw = window.open(link, "AnfrageWindow" , params);
		spezw.focus();
}

