

var Normal_de = new Image(); 
Normal_de.src = "images/all/de.gif";  
var Highlight_de = new Image();  
Highlight_de.src = "images/all/de_act.gif";    
				
var Normal_en = new Image();   
Normal_en.src = "images/all/en.gif";  
var Highlight_en = new Image();   
Highlight_en.src = "images/all/en_act.gif";    
 
var Normal_it = new Image();   
Normal_it.src = "images/all/it.gif";  
var Highlight_it = new Image();   
Highlight_it.src = "images/all/it_act.gif"; 




   


function change(nr,obj){
window.document.images[nr].src = obj.src;
} 
 



function show(x){
if(document.layers)// NN 4.x{
document.layers[x].visibility="show";
}
if (document.all && !document.getElementById) // IE 4{
document.all[x].style.visibility="visible";
}
if (document.getElementById) // IE 5.x und NN 6{
document.getElementById(x).style.visibility="visible";
}
}


function hide(x){ 
if(document.layers)// NN 4.x{
document.layers[x].visibility="hide";
}
if (document.all && !document.getElementById) // IE 4{
document.all[x].style.visibility="hidden";
}
if (document.getElementById) // IE 5.x und NN 6{
document.getElementById(x).style.visibility="hidden";
}
}


function popup(bildname, w, h) 
{ 
var hintergrundfarbe = "#ffffff"; 
var popup = window.open("","Popup","width="+w+",height="+h+",resizable=0,scrollbars=0");

popup.document.write("<html><head><title>SÄCHSISCHE SANDSTEINWERKE Angebote Details</title></head>"); 
popup.document.write('<body onBlur="self.close()" onClick="self.close()" bgcolor="'+hintergrundfarbe+'" leftmargin="0" rightmargin="0" topmargin="0">'); 
popup.document.write("<img src='"+bildname+"' border='0' alt=''>"); 
popup.document.write("</body></html>"); 
} 



