<!-- Hide script from old browsers

// COPYRIGHT WEBAPPZ Systems, Inc. - (C) 2005 - ALL RIGHTS RESERVED
// For a license, contact www.webappz.com. DO NOT COPY!!!!!!!!!!!!

var theBox;
var theDomain;
var theSubject;
var mailWindow;

// Launch a new webappz mailform window ---------------------------------
function startMailForm(aBox, aDomain, aSubject) {
	theBox = aBox;
	theDomain = aDomain;
	theSubject = aSubject;
	mailWindow = window.open
            ("/includes/contact_form.html","MailForm",
	     "height=660,width=500,resizable=NO,scrollbars=NO,"+
	     "menubar=no,status=NO,toolbar=no,location=no,"+
	     "directories=no");
   	mailWindow.focus();
}

function loadMailForm() {
	    mailWindow.document.mailForm.subject.value = theSubject;
	    mailWindow.document.mailForm.recipient.value = 
                 theBox+"@"+theDomain+".com"; 
}

// ---------------------------------------------------------------------

// COPYRIGHT WEBAPPZ Systems, Inc. - (C) 2005 - ALL RIGHTS RESERVED
// For a license, contact www.webappz.com. DO NOT COPY!!!!!!!!!!!!

// End hiding script from old browsers -->
