function leadingZero(nr)
{
	if (nr < 10) nr = "0" + nr;
	return nr;
}

function submitForm()
{

	var dt = new Date();
document.forms[0].OILB_387382.value = leadingZero(dt.getMonth()+1) + "" + leadingZero(dt.getDate()) + "" + dt.getFullYear();

	var continueToSubmit = true;
	if( continueToSubmit && document.optin.OILB_EMAIL.value.length != 0 )
	{
		var emailValue = document.optin.OILB_EMAIL.value;
		if( ( emailValue.indexOf( '@' ) <= 0 ) || ( emailValue.indexOf( '.', emailValue.indexOf( '@' ) ) <= 0 ) )
	{
			continueToSubmit = false;
			alert('You must provide a valid email address.');
			document.optin.OILB_EMAIL.focus();
		}
	}
	if( continueToSubmit && document.optin.OILB_EMAIL.value.length == 0 )
	{
		continueToSubmit = false;
		alert('You must provide a value for Email.');
		document.optin.OILB_EMAIL.focus();
	}
	if( continueToSubmit && document.optin.OILB_LASTNAME.value.length == 0 )
	{
		continueToSubmit = false;
		alert('You must provide a value for Last Name.');
		document.optin.OILB_LASTNAME.focus();
	}
	if( continueToSubmit && document.optin.OILB_387382.value.length == 0 )
	{
		continueToSubmit = false;
		alert('You must provide a value for Date.');
		document.optin.OILB_387382.focus();
	}
	if( continueToSubmit && document.optin.OILB_387381.value.length == 0 )
	{
		continueToSubmit = false;
		alert('You must provide a value for Comments.');
		document.optin.OILB_387381.focus();
	}
	if( continueToSubmit && document.optin.OILB_387379.value.length == 0 )
	{
		continueToSubmit = false;
		alert('You must provide a value for Phone.');
		document.optin.OILB_387379.focus();
	}
	if( continueToSubmit && document.optin.OILB_FIRSTNAME.value.length == 0 )
	{
		continueToSubmit = false;
		alert('You must provide a value for First Name.');
		document.optin.OILB_FIRSTNAME.focus();
	}
	if( continueToSubmit && document.optin.OILB_387378.value.length == 0 )
	{
		continueToSubmit = false;
		alert('You must provide a value for Title.');
		document.optin.OILB_387378.focus();
	}
	if( continueToSubmit && document.optin.OILB_387380.value.length == 0 )
	{
		continueToSubmit = false;
		alert('You must provide a value for Country.');
		document.optin.OILB_387380.focus();
	}
	if( continueToSubmit && document.optin.OILB_387377.value.length == 0 )
	{
		continueToSubmit = false;
		alert('You must provide a value for Organization.');
		document.optin.OILB_387377.focus();
	}
	if( continueToSubmit )
	{
		document.optin.submit();
	}
}

function leadingZero(nr)
{
	if (nr < 10) nr = "0" + nr;
	return nr;
}

function getTheDate()
{

	var dt = new Date();
document.forms[0].thedate.value = leadingZero(dt.getMonth()+1) + "." + leadingZero(dt.getDate()) + "." + dt.getFullYear();
	}
