
	function big(house, number)
	{
		var maxp;
		if(house == 'pirgi') maxp = 9;
		if(house == 'house-ag-vasillis') maxp = 5;
		if(house == 'apartment-ag-vasillis') maxp = 5;
		if(house == 'apartment-ornos') maxp = 10;
		if(house == 'agrari-valley') maxp = 9;
		if(house == 'leonis') maxp = 10;
		if(house == 'house-agios-yiannis') maxp = 6;
		if(house == 'apartment-agios-yiannis') maxp = 6;
		if(house == 'cavo-canalia') maxp = 8;
		if(house == 'apartment-ornos-2') maxp = 7;
		if(house == 'villa-lair') maxp = 5;
		if(house == 'red-house') maxp = 5;
		if(house == 'road-to-paradise') maxp = 7;
		if(house == 'iros') maxp = 10;
		if(house == 'kellys') maxp = 10;
		
		if (number < 1) number = maxp;
		if (number > maxp) number = 1;
		
		var src = '_img/pix/' + house + '/' + number + '.jpg';
		w = open('', 'displayWindow', 'width=600, height=480, status=no, resizable=no, toolbar=no, scrollbars=no, menubar=no');
		w.document.open();
		w.document.write('<html><head><title>Large picture</title><style>@import url(_css/popup.css);</style></head><body><img src="' + src + '" /><a class="left" href="javascript://" onclick="window.opener.big(\'' + house + '\', ' + (number - 1) + ')">&laquo; back</a><a class="right" href="javascript://" onclick="window.opener.big(\'' + house + '\', ' + (number + 1) + ')">next &raquo;</a></body></html>');
		w.document.close();
	}
