

function startList () {
	if (document.all&&document.getElementById) {

		navRoot = document.getElementById("Pulldown");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" navOver";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" navOver", "");
				}
			}
		}

		navRoot = document.getElementById("selectLang");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" langOver";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" langOver", "");
				}
			}
		}

	}
}


function neuesFenster(bildname,breite,hoehe){	

hoehe = hoehe + 20;
var fheight = hoehe;
var fwidth = breite;
var scrollleiste = 'no';

if (breite > 750) 
{
   fwidth = 780;
   scrollleiste = 'yes';
}

if (hoehe > 570) 
{
   fheight = 570;
  scrollleiste = 'yes';
}

var f = window.open('', 'bild', 'width='+fwidth+',height='+fheight+',left=1,top=1,toolbar=0,status=0, location=0, directories=0, menubar=0, resizable=1, scrollbars=auto');	
if(f.focus)		
f.focus();			
var d = f.document;	

d.open();	
d.write('<HTML><HEAD><TITLE>Remmers Baustofftechnik GmbH</TITLE>');
d.write('<style type="text/css"><!-- a {font-family:Arial;font-size:10pt;text-decoration:none;color:#000000;}//--></style>');
d.write('</HEAD><BODY marginwidth=0 marginheight=0 leftmargin=0 topmargin=0>');	
d.write('<TABLE WIDTH='+fwidth+' HEIGHT="20" BORDER=0 CELLPADDING="5" BGCOLOR="#ccccff"><TR ALIGN=LEFT VALIGN=TOP>');
d.write('<TD WIDTH="20"><A href="javascript: window.print();"><IMG SRC="http://www.remmers.de/html/de/layout/ic_print.gif" border="0" vspace="0" hspace="0" align=left><BR></A></TD> ');
d.write('<TD WIDTH="60"><A href="javascript: window.print();"><B>Drucken</B></A></TD> ');
d.write('<TD WIDTH="20"><A href="javascript: window.close();"><IMG SRC="http://www.remmers.de/html/de/layout/ic_close.gif" border="0" vspace="0" hspace="0" align=left><BR></A></TD> ');	
d.write('<TD WIDTH="200"><A href="javascript: window.close();"><B>Fenster schlie&szlig;en</B></A></TD> ');
d.write('<TD>&nbsp;</TD></TR></TABLE>');
d.write('<IMG src="http://www.remmers.de/html/de/images/'+bildname+'" width="'+breite+'" border=0 height="'+hoehe+'">');	
d.write('</BODY></HTML>');	
d.close();}

function goto(f)
{
//	window.location.href=document.auswahl.link_auswahl.options[document.auswahl.link_auswahl.selectedIndex].value
	window.location.href=f.form.link_auswahl.options[f.form.link_auswahl.selectedIndex].value
}

