
//This function submit the form


function doSubmit(str){

	var theform = document.forms[0];
	var theevent = document.getElementById("event"); //instead of action. Note that event is the hidden field
	theevent.value = str;	
	theform.submit();
}

function doSubmit2(str){

	var theform = document.forms[0];
	var theevent = document.getElementById("event2"); //instead of action. Note that event is the hidden field
	theevent.value = str;	
	theform.submit();
}
