/****************************************************************
	PROGNOS BEHAVIOR DEFINITIONS
	code by CATsoft Development GmbH - http://www.catsoft.ch

	Created:		12.05.2006 - MRO
	Last Changes:	17.05.2006 - MRO
****************************************************************/

	var myrules = {
		'body' : function(element){
			pf.Init(); // steht im framework.js    
			DoOnInit();  // mandant: logik.js

		},
		

		'.ForwardButton' : function(element){
			element.onclick = function(){
				pf.GoToNextPage('forward');
			}
		},


		'.BackwardButton' : function(element){
			element.onclick = function(){
				pf.GoToNextPage('backward');
			}
		},
		
		
		'.CloseButton' : function(element){
			element.onclick = function(){
				close();
			}
		},

		'.compinfo' : function(element){
			element.onclick = function(){
				pf.showBrowsers();
			}
		}
	};
	
	Behaviour.register(myrules);

