﻿
//
//	anonymous init function

pageInit = function ()
{

	var f, x;

	if (f = dojo.byId("contactForm"))
	{
		x = new dojo.io.FormBind
		({
			formNode: f,
			handle: contactFormResponseHandler,
			mimetype: "text/json",
			sendTransport: true
		});
		x.onSubmit = contactFormSubmitHandler;
	}

};

pageInit();
pageInit = null;
delete pageInit;
// JScript File

