var newwindow = '';

function popitup(url, info) {
	
	if(info == null) {
		info = "Beispiele";
	}
	
	if (newwindow.location && !newwindow.closed) {
	    newwindow.location.href = url;
	    newwindow.focus();
	} else {
	    	newwindow=window.open(url,'htmlname','width=480,height=320,resizable=1');
	    	newwindow.focus();
	    	newwindow.document.open();
	    	with (newwindow) {
	    		document.write("<html><head></head><body>");
	    		document.write("<span>Objekt: "+ info + "</span><br />");
	    		document.write("<br /><img src='"+ url +"' border='1' />");
				document.write("</body></html>");
	    	}
	    	newwindow.document.close();
	}
	
}
