/*	-------------------------------------------------------------------------	  .oooooo.				 oooo  oooo 		Joyent Inc.	ooooo  ooooo			oo        oo	ooooo  ooooo		Marketo contact form script	 oooo  oooo				  'oooooo'  			-------------------------------------------------------------------------*/// form-specific pre-fillsvar mktoPreFillFields = {	"Email": null,	"FirstName": null,	"LastName": null,	"Lead_Notes__c": null,	"Lead_Type__c": null}// form-specific DOM elementfunction mktoGetForm() {	return document.getElementById('mktForm_1005');}// basic functions for all formsvar profiling = {  isEnabled: false,  numberOfProfilingFields: 3,  alwaysShowFields: [ 'mktDummyEntry']}function fieldValidate(field) {  /* call Mkto.setError(field, message) and return false to mark a field value invalid */  /* return 'skip' to bypass the built-in validations */  return true;}function getRequiredFieldMessage(domElement, label) {  return "This field is required";}function getTelephoneInvalidMessage(domElement, label) {  return "Please enter a valid telephone number";}function getEmailInvalidMessage(domElement, label) {  return "Please enter a valid email address";}function formSubmit(elt) {  return Mkto.formSubmit(elt);}function formReset(elt) {  return Mkto.formReset(elt);}
