function openWindowQuer (adress)
		{
		window.open (adress,'Bildmaterial_hori','scrollbars=no,resizable=no,width=840,height=640');
		}
function openWindowVert (adress)
		{
		window.open (adress,'Bildmaterial_vert','scrollbars=no,resizable=no,width=640,height=840');
		}
function openWindowQuad (adress)
		{
		window.open (adress,'Bildmaterial_quad','scrollbars=no,resizable=no,width=300,height=300');
		}
function countklick(name){
		var url = 'frontend/countinfomaterial.cfm?name='+name;
		var myAjax = new Ajax.Request(
			url, 
				{method: 'POST', 
					onSuccess: function(response){
						var response = response.responseText
					},
					onFailure: function(){alert('da ist etwas schief gegangen...'+response)}
				});
		
	}
