/////////////////////////////////////////////        TMENU funktionen       ////////////////////////////////////////////////////////////



var cr_counter2 = 1;
var cr_checker2 = 0;
var top1_count = 0;

var cr_counter3 = 1;
var cr_checker3 = 0;
var top2_count = 0;

var top3_count = 0;

function cr_top2_stay(cur,nosub){
	cr_checker2 = 1;
	cr_showHideLayers('topmenu2','','show')
	if (nosub=='nosub'){
		cr_showHideLayers('topmenu2','','hide')
	}
	
	for (var cr_i = 1; cr_i < top1_count; cr_i++) {
		var obj = MM_findObj('uid_1_'+cr_i);
		if (cr_i==cur){	
			obj.style.backgroundColor = '#C4C5B5';
		}else{
			obj.style.backgroundColor = '#DCDBC9';
		}
	}
}
function cr_top3_stay(cur,nosub){
	cr_checker3 = 1;
	if (nosub!='nosub'){
		cr_checker2 = 1;
		cr_showHideLayers('topmenu3','','show')
	}else{
		cr_checker2 = 0;
		cr_showHideLayers('topmenu3','','hide')
	}
	for (var cr_ii = 1; cr_ii < top2_count; cr_ii++) {
		var obj = MM_findObj('uid_2_'+cr_ii);
		if (cr_ii==cur){	
			obj.style.backgroundColor = '#D5D5CD';
		}else{
			obj.style.backgroundColor = '#EDEDE3';
		}
	}
}
function cr_top4_stay(cur,nosub){
	cr_checker4 = 1;
	cr_checker3 = 1;
	cr_checker2 = 1;
	cr_showHideLayers('topmenu3','','show')

	for (var cr_ii = 1; cr_ii < top3_count; cr_ii++) {
		var obj = MM_findObj('uid_3_'+cr_ii);
		if (cr_ii==cur){	
			obj.style.backgroundColor = '#D5D5CD';
		}else{
			obj.style.backgroundColor = '#EDEDE3';
		}
	}
}
function cr_top3_stay1(){
	cr_checker2 = 1;
}
function cr_top4_stay1(){
	cr_checker2 = 1;
	cr_checker3 = 1;
}

function cr_top2_hide(){
	cr_counter2 = 1;
	cr_checker2 = 0;
	zaehler2()
}
function cr_top3_hide(){
	cr_counter3 = 1;
	cr_checker3 = 0;
	zaehler3()
}
function cr_top4_hide(){
	cr_counter4 = 1;
	cr_checker4 = 0;
	zaehler4()
}

function zaehler2() {
	if (cr_counter2 > 0) {
	cr_counter2 --;
	setTimeout("zaehler2()",200);
	} else {
		if (cr_checker2 < 1) {
			cr_showHideLayers('topmenu2','','hide')
			for (var cr_ii = 1; cr_ii < top1_count; cr_ii++) {
				var obj = MM_findObj('uid_1_'+cr_ii);
				obj.style.backgroundColor = '#DCDBC9';
			}
		}
	}
}
function zaehler3() {
	if (cr_counter3 > 0) {
	cr_counter3 --;
	setTimeout("zaehler3()",200);
	} else {
		if (cr_checker3 < 1) {
			cr_showHideLayers('topmenu3','','hide')
			for (var cr_ii = 1; cr_ii < top2_count; cr_ii++) {
				var obj = MM_findObj('uid_2_'+cr_ii);
				obj.style.backgroundColor = '#EDEDE3';
			}
		}
	}
}
function zaehler4() {
	if (cr_counter4 > 0) {
	cr_counter4 --;
	setTimeout("zaehler4()",200);
	} else {
		if (cr_checker4 < 1) {
			for (var cr_ii = 1; cr_ii < top3_count; cr_ii++) {
				var obj = MM_findObj('uid_3_'+cr_ii);
				obj.style.backgroundColor = '#EDEDE3';
			}
		}
	}
}

function cr_showHideLayers() {
  var i,p,v,z,obj,args=cr_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; z=(v=='visible')?'99999999':(v=='hidden')?'-3':z;}
    obj.visibility=v; obj.zIndex=z; }//alert(args[i]+' '+z);
}

function str_replace (search, replace, subject)
{
  var result = "";
  var  oldi = 0;
  for (cr_i = subject.indexOf (search)
     ; cr_i > -1
     ; cr_i = subject.indexOf (search, cr_i))
  {
    result += subject.substring (oldi, cr_i);
    result += replace;
    cr_i += search.length;
    oldi = cr_i;
  }
  return result + subject.substring (oldi, subject.length);
}

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

function popupOpen(pid,type,width,height) {
  	window.open('index.'+pid+'.'+type+'.html','','width='+width+',height='+height+',scrollbars=1');
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function popupImage(url,width,height) {
  	window.open(url,'Popup','width='+width+',height='+height+',scrollbars=0');
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function MM_changeProp(objName,x,theProp,theValue) { //v6.0
  var obj = MM_findObj(objName);
  if(obj && (theProp.indexOf("style.")==-1 || obj.style)){
    if (theValue == true || theValue == false)
      eval("obj."+theProp+"="+theValue);
    else eval("obj."+theProp+"='"+theValue+"'");
  }
}
function MM_findObj(n, d) { //v4.01
  	var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  	if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  	for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  	if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_swapImgRestore() {
	var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

/* infolox */
function getObjectByID (oDocument, sID) {
	if (oDocument.all) {
		return oDocument.all[sID];
	}
	else if (oDocument.getElementById) {
		return oDocument.getElementById(sID);
	}
	else if (oDocument.layers) {
		return oDocument.layers[sID];
	}
}
function gotoPageID(sPageID_) {
	var els = [];
	var uri_els = document.location.href.split("?");
	if (uri_els[1]){
		uri_els = uri_els[1].split("&");
		for( var i in uri_els ){
			var var_els = uri_els[i].split("=");
			if( typeof var_els[1] != "undefined" ){
				els[els.length] = {
					"key"   : var_els[0],
					"value" : var_els[1]
				};
			}
		}
	}
	var bFoundPageID = false;
	for( var i in els ){
		if (els[i]['key'] == 'id') {
			els[i]['value'] = sPageID_;
			bFoundPageID = true;
		}
	}
	if (!bFoundPageID) {
		els[els.length] = {
			"key"   : 'id',
			"value" : sPageID_
		};
	}
	var uri = document.location.href.split("?")[0]+"?";
	for( var i in els ){
		uri+= els[i]['key']+"="+els[i]['value']+"&";
	}
	uri = uri.substr( 0, uri.length-1 );
	document.location.href = uri;
}
function getCookie(oDocument_, sCookie_) {
	var iStart = oDocument_.cookie.indexOf(sCookie_+"=");
	var iLen = iStart+sCookie_.length+1;
	if ((!iStart) && (sCookie_ != oDocument_.cookie.substring(0,sCookie_.length))) return null;
	if (iStart == -1) return null;
	var iEnd = oDocument_.cookie.indexOf(";",iLen);
	if (iEnd == -1) iEnd = oDocument_.cookie.length;
	return unescape(oDocument_.cookie.substring(iLen,iEnd));
}
function getDKEntryCount(oDocument_) {
	var sDKEntryCount = getCookie(oDocument_, 'roefix_dk_entries');
	if (sDKEntryCount) {
		oDocument_.write("["+sDKEntryCount+"]");
	}
}
function saveDK(oDocument_, sFormName_) {
	var oSF;
	if (sFormName_) {
		oSF = oDocument_.forms[sFormName_];
	}
	else {
		oSF = oDocument_.forms['save'];
	}
	if (oSF) {
		oSF.submit();
	}
	else {
	}
}
function addToDK(sHref_, sDocument_, sReference_) {
	DK_add(sHref_, sDocument_, sReference_);
}
function aDK(sHref_, sDocument_, sReference_) {
	DK_add(sHref_, sDocument_, sReference_);
}
function __invAction(oDocument_, sActionName_) {
	var oSF = oDocument_.forms['save'];
	if (oSF) {
		var oFormAction = getObjectByID(oDocument_, 'action');
		if (oFormAction) {
			oFormAction.value = sActionName_;
			oSF.action.value = sActionName_;
			oSF.submit();
		}
	}
}
function clearDK(oDocument_) {
	__invAction(oDocument_, 'clearDK');
}
function getDKZIP(oDocument_) {
	__invAction(oDocument_, 'getDKZIP');
}

function DKManager(obj_name){
	this.objName = obj_name;
	this.is_ie = navigator.userAgent.indexOf("MSIE")!=-1;
	
	this.DKFile = "/downloads/downloads.php";
	
	this.addItem = function(sHref_, sDocument_, sReference_) {
		this.__addItem(sHref_, sDocument_, sReference_);
	}; 
	
	this.request;
	this.__initRequest = function(){
		try {
			this.request.abort();
		}
		catch(e) {}
		
		try {
			this.request = new XMLHttpRequest();
		}
		catch(e) {
			try {
				this.request = new ActiveXObject("Msxml2.XMLHTTP");
			}
			catch(e) {
				try {
					this.request = new ActiveXObject("Microsoft.XMLHTTP");
				}
				catch(e) {
					alert("ActiveX muss aktiviert sein.");
					return false;
				}
			}
		}
		return true;
	};
	
	this.__addItem = function(sHref_, sDocument_, sReference_) {
		var sPageID = "";
		var els = [];
		var uri_els = document.location.href.split("?");
		if (uri_els[1]){
			uri_els = uri_els[1].split("&");
			for( var i in uri_els ){
				var var_els = uri_els[i].split("=");
				if( typeof var_els[1] != "undefined" ){
					els[els.length] = {
						"key"   : var_els[0],
						"value" : var_els[1]
					};
				}
			}
		}
		var bFoundPageID = false;
		for( var i in els ){
			if (els[i]['key'] == 'id') {
				sPageID = els[i]['value'];
				bFoundPageID = true;
			}
		}
		if (!this.__initRequest()) {
			return false;
		}
		this.request.onreadystatechange = new Function( this.objName+".__addItemOnReadyHandler()" );
		var sRequest ="&href=" + sHref_ + "&document=" + sDocument_ + "&reference=" + sReference_;
		
		if (bFoundPageID) {
			sRequest += "&pid=" + sPageID;
		}
		this.request.open("GET", this.DKFile+"?a=addItemJS"+sRequest);
		this.request.send(null);
	};
	
	this.__addItemOnReadyHandler = function(){
		if (this.request.readyState == 4) {
			if (this.request.status == 200) {
				if( this.request.responseText != "success" ){
					alert("Fehler:\n"+this.request.responseText);
				}
				else {
					var oDKQnt = getObjectByID(document, "dk");
					if (oDKQnt) {
						var sDKEntryCount = getCookie(document, 'roefix_dk_entries');
						if (sDKEntryCount) {
							oDKQnt.innerHTML = "["+sDKEntryCount+"]";
						}
					}
				}
			}
			else {
				alert("Der Server ist nicht erreichbar.");
			}
		}
		else {
			//alert("readyState: " + String(this.request.readyState));
		}
	};
};

var __DKManager = new DKManager("__DKManager");
function DK_add(sHref_, sDocument_, sReference_) {
	__DKManager.addItem(sHref_, sDocument_, sReference_);
}

function italia(){
	if (navigator.appName == 'Netscape')
	var language = navigator.language;
	else
	var language = navigator.browserLanguage;
	
	if (language.indexOf('de') > -1){
		window.location.href = 'index.1.10.html';
	}else{
		window.location.href = 'index.1.5.html';		
	}
}

top1_count = 9;
MM_preloadImages('fileadmin/images/vorlagen/topnavigation2.gif')
MM_preloadImages('fileadmin/images/vorlagen/topnavigation2_nosub.gif')
MM_preloadImages('fileadmin/images/vorlagen/topnavigation2_act.gif')

function layer_change(lay,uid,nosub){
	if (nosub!='nosub'){
		var obj = MM_findObj(lay);
		switch (uid) {
			case "106":
												top3_count = 11;
												top3_count++;
												obj.innerHTML = '<table border="0" cellpadding="0" height="273" cellspacing="0" id="js-1stmenu"><tr><td style="background-color:#EDEDE3; height:24px; vertical-align:top"><div id="uid_3_1" onclick="MM_goToURL(\'parent\',\'http://www.roefix.com\ROEFIX-Standorte-OEsterreich.16.0.html\');" onMouseOver="cr_top4_stay(1);" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>ROFIX Austria</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3; height:24px; vertical-align:top"><div id="uid_3_2" onclick="MM_goToURL(\'parent\',\'http://www.roefix.com/ROEFIX-Albanien.305.0.html\');" onMouseOver="cr_top4_stay(2);" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>ROFIX Albania</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3; height:24px; vertical-align:top"><div id="uid_3_3" onclick="MM_goToURL(\'parent\',\'http://www.roefix.com/ROEFIX-Bosnien-Herzigovina.309.0.html\');" onMouseOver="cr_top4_stay(3);" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>ROFIX Boznia-Herzegovina</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3; height:24px; vertical-align:top"><div id="uid_3_4" onclick="MM_goToURL(\'parent\',\'http://www.roefix.com/ROEFIX-Bulgarien.306.0.html\');" onMouseOver="cr_top4_stay(4);" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>ROFIX Bulgaria</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3; height:24px; vertical-align:top"><div id="uid_3_5" onclick="MM_goToURL(\'parent\',\'http://www.roefix.com/ROEFIX-Italien.268.0.html\');" onMouseOver="cr_top4_stay(5);" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>ROFIX Italia</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3; height:24px; vertical-align:top"><div id="uid_3_6" onclick="MM_goToURL(\'parent\',\'http://www.roefix.com/ROEFIX-Kosovo.304.0.html\');" onMouseOver="cr_top4_stay(6);" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr>       <td>ROFIX Kosovo</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3; height:24px; vertical-align:top"><div id="uid_3_7" onclick="MM_goToURL(\'parent\',\'http://www.roefix.com/ROEFIX-Kroatien.310.0.html\');" onMouseOver="cr_top4_stay(7);" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr>       <td>ROFIX Croatia</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3; height:24px; vertical-align:top"><div id="uid_3_8" onclick="MM_goToURL(\'parent\',\'http://www.roefix.com/ROEFIX-Montenegro.15832.0.html\');" onMouseOver="cr_top4_stay(8);" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr>       <td>ROFIX Muntenegru</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3; height:24px; vertical-align:top"><div id="uid_3_9" onclick="MM_goToURL(\'parent\',\'http://www.roefix.com/ROEFIX-Schweiz.267.0.html\');" onMouseOver="cr_top4_stay(9);" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr>     <td>ROFIX Elvetia</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3; height:24px; vertical-align:top"><div id="uid_3_10" onclick="MM_goToURL(\'parent\',\'http://www.roefix.com/ROEFIX-Serbien.307.0.html\');" onMouseOver="cr_top4_stay(10);" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>ROFIX Serbia</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3; height:23px; vertical-align:top"><div id="uid_3_11" onclick="MM_goToURL(\'parent\',\'http://www.roefix.com/ROEFIX-Slowenien.265.0.html\');" onMouseOver="cr_top4_stay(11);" style="cursor: hand;width:266px; height:23px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>ROFIX Slovenia</td></tr></table></div></td></tr></table>';
											break;
											case "15":
												top3_count = 4;
												top3_count++;
												obj.innerHTML = '<table border="0" cellpadding="0" height="273" cellspacing="0" id="js-1stmenu"></table>';
											break;
									case "7":
										top2_count = 5;
										top2_count++;
										obj.innerHTML = '<table border="0" cellpadding="0" height="273" cellspacing="0" id="js-1stmenu"><tr><td style="background-color:#EDEDE3;height:24px; vertical-align:top"><div id="uid_2_1" onclick="MM_goToURL(\'parent\',\'http://www.roefix.com\');" onMouseOver="cr_top3_stay(1,\'nosub\');layer_change(\'topmenu3\',\'338\',\'nosub\');" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>ROFIX  Holding</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3;height:24px; vertical-align:top"><div id="uid_2_2" onclick="MM_goToURL(\'parent\',\'16.0.html\');" onMouseOver="cr_top3_stay(2,\'nosub\');layer_change(\'topmenu3\',\'484\',\'nosub\');" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>ROFIX in Romania</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3;height:24px; vertical-align:top"><div id="uid_2_3" onclick="MM_goToURL(\'parent\',\'ROEFIX-Standorte-in-Europa.106.0.html\');" onMouseOver="cr_top3_stay(3);layer_change(\'topmenu3\',\'106\');" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>ROFIX in Europa</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3;height:24px; vertical-align:top"><div id="uid_2_4" onclick="MM_goToURL(\'parent\',\'Haendler.15.0.html\');" onMouseOver="cr_top3_stay(4);layer_change(\'topmenu3\',\'15\');" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>Harta</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3;height:24px; vertical-align:top"><div id="uid_2_5" onclick="MM_goToURL(\'parent\',\'Links.465.0.html\');" onMouseOver="cr_top3_stay(5,\'nosub\');layer_change(\'topmenu3\',\'465\',\'nosub\');" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>Referinte</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3;"></td></tr></table>';
									break;case "79":
												top3_count = 1;
												top3_count++;
												obj.innerHTML = '<table border="0" cellpadding="0" height="273" cellspacing="0" id="js-1stmenu"><tr><td style="background-color:#EDEDE3; height:24px; vertical-align:top"><div id="uid_3_1" onclick="MM_goToURL(\'parent\',\'Neue-Frage-stellen.280.0.html\');" onMouseOver="cr_top4_stay(1);" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>Neue Frage stellen</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3; background-image: url(fileadmin/images/bg_navigation2.gif);"></td></tr></table>';
											break;case "5":
										top2_count = 5;
										top2_count++;
										obj.innerHTML = '<table border="0" cellpadding="0" height="273" cellspacing="0" id="js-1stmenu"><tr><td style="background-color:#EDEDE3;height:24px; vertical-align:top"><div id="uid_2_1" onclick="MM_goToURL(\'parent\',\'http://www.roefix.ro/index.php?option=com_content&view=article&id=21:intrebari-si-raspuns&catid=24:articole-menu\');" onMouseOver="cr_top3_stay(1,\'nosub\');layer_change(\'topmenu3\',\'67\',\'nosub\');" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>FAQs - Intrebari&amp;Raspuns</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3;height:24px; vertical-align:top"><div id="uid_2_2" onclick="MM_goToURL(\'parent\',\'http://www.roefix.ro/index.php?option=com_content&view=article&id=12:materiale-informative&catid=24:articole-menu\');" onMouseOver="cr_top3_stay(2,\'nosub\');layer_change(\'topmenu3\',\'67\',\'nosub\');" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>Materiale Informative</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3;height:24px; vertical-align:top"><div id="uid_2_3" onclick="MM_goToURL(\'parent\',\'http://www.roefix.ro/index.php?option=com_content&view=article&id=20:download&catid=24:articole-menu\');" onMouseOver="cr_top3_stay(3,\'nosub\');layer_change(\'topmenu3\',\'76\');" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>Downloads</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3;height:24px; vertical-align:top"><div id="uid_2_4" onclick="MM_goToURL(\'parent\',\'http://www.roefix.ro/index.php?option=com_content&view=article&id=11:presa&catid=24:articole-menu\');" onMouseOver="cr_top3_stay(4,\'nosub\');layer_change(\'topmenu3\',\'69\');" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>Presa</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3;height:24px; vertical-align:top"><div id="uid_2_5" onclick="MM_goToURL(\'parent\',\'http://www.roefix.ro/index.php?option=com_content&view=article&id=3:consultanta&catid=24:articole-menul\');" onMouseOver="cr_top3_stay(5,\'nosub\');layer_change(\'topmenu3\',\'96\',\'nosub\');" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>Consultanta</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3;"></td></tr></table>';
									break;case "13":
												top3_count = 2;
												top3_count++;
												obj.innerHTML = '<table border="0" cellpadding="0" height="273" cellspacing="0" id="js-1stmenu"><tr><td style="background-color:#EDEDE3; height:24px; vertical-align:top"><div id="uid_3_1" onclick="MM_goToURL(\'parent\',\'Freie-Stellen.291.0.html\');" onMouseOver="cr_top4_stay(1);" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>Freie Stellen</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3; height:24px; vertical-align:top"><div id="uid_3_2" onclick="MM_goToURL(\'parent\',\'Online-Bewerben.330.0.html\');" onMouseOver="cr_top4_stay(2);" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>Online Bewerben</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3; background-image: url(fileadmin/images/bg_navigation2.gif);"></td></tr></table>';
											break;case "12":
												top3_count = 4;
												top3_count++;
												obj.innerHTML = '<table border="0" cellpadding="0" height="273" cellspacing="0" id="js-1stmenu"><tr><td style="background-color:#EDEDE3; height:24px; vertical-align:top"><div id="uid_3_1" onclick="MM_goToURL(\'parent\',\'Innovation-Logisitk.37.0.html\');" onMouseOver="cr_top4_stay(1);" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>Innovation & Logisitk</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3; height:24px; vertical-align:top"><div id="uid_3_2" onclick="MM_goToURL(\'parent\',\'Qualitaet-Wertbestaendigkeit.36.0.html\');" onMouseOver="cr_top4_stay(2);" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>Qualit?t & Wertbest?ndigkeit</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3; height:24px; vertical-align:top"><div id="uid_3_3" onclick="MM_goToURL(\'parent\',\'Systemdenken-Qualitaetsmanagement.35.0.html\');" onMouseOver="cr_top4_stay(3);" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>Systemdenken & Qualit?tsmanagement</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3; height:24px; vertical-align:top"><div id="uid_3_4" onclick="MM_goToURL(\'parent\',\'Dialog-Service.56.0.html\');" onMouseOver="cr_top4_stay(4);" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>Dialog & Service</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3; background-image: url(fileadmin/images/bg_navigation2.gif);"></td></tr></table>';
											break;
								case "3":
										top2_count = 6;
										top2_count++;
										obj.innerHTML = '<table border="0" cellpadding="0" cellspacing="0" height="273" id="js-1stmenu"><tr><td style="background-color:#EDEDE3;height:24px; vertical-align:top"><div id="uid_2_1" onclick="MM_goToURL(\'parent\',\'http://www.roefix.ro/index.php?option=com_content&view=article&id=16:istoric-rofix&catid=25:meniucompania\');" onMouseOver="cr_top3_stay(1,\'nosub\');layer_change(\'topmenu3\',\'10\',\'nosub\');" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>Istoric</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3;height:24px; vertical-align:top"><div id="uid_2_2" onclick="MM_goToURL(\'parent\',\'http://www.roefix.ro/index.php?option=com_content&view=article&id=17:filozofie&catid=25:meniucompania\');" onMouseOver="cr_top3_stay(2);layer_change(\'topmenu3\',\'13\');" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>Filozofie</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3;height:24px; vertical-align:top"><div id="uid_2_3" onclick="MM_goToURL(\'parent\',\'http://www.roefix.ro/index.php?option=com_content&view=article&id=15:viziune-si-misiune&catid=24:articole-menu\');" onMouseOver="cr_top3_stay(3);layer_change(\'topmenu3\',\'12\');" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>Misiunea &amp; Viziune</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3;height:24px; vertical-align:top"><div id="uid_2_4" onclick="MM_goToURL(\'parent\',\'http://www.roefix.ro/index.php?option=com_content&view=article&id=19:cariera&catid=25:meniucompania\');" onMouseOver="cr_top3_stay(4,\'nosub\');layer_change(\'topmenu3\',\'77\',\'nosub\');" style="cursor: hand;width:266px; height:24px; background-image:url(fileadmin/images/vorlagen/topnavigation2_nosub.gif)"><table width="100%" style="padding-left:10px; padding-top:3px" border="0" cellspacing="0" cellpadding="0"><tr><td>Cariera</td></tr></table></div></td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3;height:24px; vertical-align:top">&nbsp;</td></tr><tr><td height="1" bgcolor="#FFFFFF"></td></tr><tr><td style="background-color:#EDEDE3;"></td></tr></table>';
									break;
			default:
				obj.innerHTML = '&nbsp;';
			break;
	}
}

  }

