/*
öffnet ein popup und zeigt das bild gross
*/
function largeImage()
{
	url = '../../resources/php/large.php?id='+arguments[0];
	
	maxw = screen.availWidth;
	maxh = screen.availHeight;
	w	 = arguments[1];
	h	 = arguments[2];
	
	// überschreiben?
	w = parseInt(w)+10;
	h = 100;
	
	
	left = maxw/2 - w/2;
	top  = maxh/2 - h/2;
	
	// f  = 'width='+w+',';
	// f += 'height='+h+',';
	f  = 'width=0,';
	f += 'height=0,';
	f += 'top=0,';
	f += 'left=0,';
	f += 'scrollbar=auto,';
	f += 'resizable=yes,';
	f += 'statusbar=no';
	
	win = open(url, 'Loading', f);
	
	win.focus();
}

function externalWebsite()
{
	open(arguments[0]);
}