function fenster(url) {
	aFenster =
	window.open (url, "Drucken", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,top=20,left=300,WIDTH=680,HEIGHT=480");
	aFenster.focus();
}

// Google
$(document).ready(function(){
	// Google
	if(typeof initialize == 'function') initialize();
});
$(window).unload( function(e) {
	// Google
	if(typeof GUnload == 'function') GUnload();
}); 


// Votebox
$(document).ready(function(){
   $(".pointlinks").live('click',function(event){
		event.preventDefault();
		url = $(this).attr('href');
		$.ajax({
		  	type: "POST",
		  	url: url,
		  	cache: false,
			success: function(strResponse){
				$("#container").html(strResponse);

			}
	  	});
   });
});