var pColor;

function changeBgColor(color) {
var item;
if (document.getElementById) {
item = document.getElementById("hstripe");
} else if (document.all) {
item = document.all(id);
}

if (item && item.style) {
pColor= item.style.backgroundColor;
item.style.backgroundColor = color;
}
}

function backToBgColor(borderH){
var item;
item = document.getElementById("hstripe");
item.style.backgroundColor = pColor; 
}

function writeEmail( name ) {
 
	address = name + "&#64" + "asmgermany.com";
  
	document.write( "<a href='mailto:" + address + "'>" + address + "</a>" );
  
}