	/* Standard function
	~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
	function OpenWindow(url, width, height) {
		var win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no' );
	}	
		
	/* jquery.accordion
	~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
	jQuery().ready(function(){
		// simple Accordion
		jQuery('#list_left_01').Accordion({
			active: false,
			animated: false,
			header: 'h3',
			navigation: true,
			autoheight: true,
			autoheight: false
		});
	});
	
	/* 
	~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
	function OpenWindowCenter(width, height, url, scrollbars) {
	  var links = (screen.width/2)-(width/2);
	  var oben = (screen.height/2)-(height/2);
	  var scrollbars2 = 'no';
	  
	  if (scrollbars == 'scroll') scrollbars2 = 'yes';
	  
	  window.open(url,"popup","height="+height+",width="+width+",status = no,toolbar = no,menubar = no,location = no,resizable = no,titlebar = no,scrollbars = "+scrollbars2+",fullscreen = no,top ="+oben+",left ="+links);
	}