// JavaScript Document

function removeStartText(obj) 
{
	if (obj.value != ""){
		obj.value = "";
	}
}

 
function submitform()
{
  document.myform.submit();
}
 
function submitcontact()
{
  document.formcontact.submit();
}
 
