function go()
{
	x = document.theform.nick.value;

	if(x.length < 11)
	{
	  alert('Der Link ist nicht ganz korrekt');
	  return 0;
	}

	var displayURL = x.replace("http://", "");

	y = document.location.search.substring(1,11);
	y = "";
	  
	document.theform.thelink1.value = "http://www.knoffl.com/check.php?file=" + x + "" ;
	document.theform.thelink2.value = "http://www.knoffl.com/check.php?text=1&php=1&file=" + x + "" ;
	document.theform.thelink3.value = '<script language="JavaScript" src="www.knoffl.com/check.php?text=1&file=' + x  + '"></script>' ;

	return false;
}

function displayCode(displayIn, the_code)
{
	var the_element = document.getElementById(displayIn);

	the_element.value = "";
	the_element.value = the_code;
}
