// Image getSize  and name
function imgZoom(name,height,width,ort){
	newname = name.split(".")[0];
	url = '../popups/'+ort+'/'+newname+'.html';
	popup_id = parseInt(Math.random()*1000);
	fenster = window.open(url, popup_id, "width="+width+",height="+height+",scrollbars=no,resizable=no");
	fenster.focus();
}
