/* create Mail-Link */
function mail (type, tld, dom, name) {
	var str = name +'@'+ dom +'.'+ tld;
	if (type == 'link') {
		document.write('<a href="mailto:'+ str +'">'+ str +'</a>');
	} else {
		document.write(str);
	}
}

/* open Image-Window */
function imgwin (img) {
	var w = 700;
	var h = 500;
	window.open("","image","scrollbars=no,width="+ w +",height="+ h +",left="+ (screen.width-w)/2 +",top="+ (screen.height-h)/2 +"");	
}

/* resize Image-Window */
function resize (img) {
	if (img.complete) {
		window.resizeTo(img.width+10, img.height+82);
		window.moveTo((screen.width-img.width)/2,(screen.height-img.height)/2);
		window.focus();
	} else {setTimeout("loadsize()", 50);}
}

/* toggle Checkbox for Brands */
function cb (id) {
	var b = document.getElementById("b"+ id);
	if (b.checked == true) {
		b.checked = false;
	} else {
		b.checked = true;
	}
}