function Go (x) {
  location.href = x;
  document.auswahl.reset();
  document.auswahl.auswahlliste.blur();
}

function createLink(cid, curl, anz, width, height) {
	var cframe1 = '&#60;iframe border="0" frameborder="0" src="';
	var cframe2 = '';
	var result = '';

	form1 = document.getElementById("user_eurobill[background" + cid + "]");
	form2 = document.getElementById("user_eurobill[border" + cid + "]");

	bgcolor = form1.value;
	if (bgcolor.length > 0 && bgcolor.match(/\d{6}/)) {
		curl += '&bgc=' + bgcolor;
	} else {
		curl += '&bgc=ffffff';
	}

	bdcolor = form2.value;
	if (bdcolor.length > 0 && bdcolor.match(/\d{6}/)) {
		curl += '&bdc=' + bdcolor;
	} else {
		curl += '&bdc=000000';
	}
	
	curl += '&anz=' + anz;
	cframe2 += 'width="' + width + '" height="' + height + '"';
	cframe2 += ' name="Iframe"&#62;&#60;/iframe&#62;';
	result = cframe1 + curl + '" ' + cframe2;

	document.getElementById('dyncont' + cid).innerHTML = result;
}