function setInputText() {
	// need to wait a moment for IE to load the gsom_put_form function, else there will be no gsom_email_field...
	var t = window.setTimeout('justDoIt();', 1500);
}

function justDoIt() {
	var containers = document.getElementsByName("gsom_email_field");
	containers[0].value = "Email here";
}

