function getget(name) {
  var q = document.location.search;
  var i = q.indexOf(name + '=');

  if (i == -1) {
    return false;
  }

  var r = q.substr(i + name.length + 1, q.length - i - name.length - 1);

  i = r.indexOf('&');

  if (i != -1) {
    r = r.substr(0, i);
  }
  
  r = r.replace('%20', ' ');
  
  r = unescape( r );
  
  
  return r.replace(/\+/g, ' ');
}

function addProductname(){
	var newtext = "This is a test";
	document.contactForm.formElement2476.value += newtext;
}