﻿
// 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 = true;


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

/**
 * initializes page selector
 */
function initPage () {
	var form = document.getElementsByName("selector");
	for (f=0; f<form.length; f++) {
		form[f].page.onchange = function (evt) { this.form.submit(); };
	}
}

