﻿
// designed by iFactory, Würzburg, Germany       //

// Copyright 2000-2008 by iFactory               //
// All rights reserved.                          //
// Duplication in any form or any use of this    //
// script or parts of it are strictly prohibited //
// for private and commercial use.               //


/****************************************************************
 * global constants
 ****************************************************************/
page = false;

join = false;
mail = false;

contact = false;


/****************************************************************
 * functions
 ****************************************************************/

/**
 * global initialization
 */
function init (evt) {
	if (code) code(evt);  // execute customer init code
	if (page) initPage();

	// init modules
	if (join) initJoin();
	if (mail) initMail();

	if (contact) initContact();
}

// set init handler
code = window.onload;
window.onload = init;