<!--
function makeNewWindow(path)
{
	newWindow = window.open('','_blank','width=600,height=449');
	if (newWindow)
	{
		newWindow.document.write('<html><head></head><body bgcolor="#000000" leftmargin="0" topmargin="0"><a href="#"><img src="'+path+'" alt="close" onClick="window.close()" style="border: 0;"></a></body></html>');
	}
}

function makeNewWindowWidthHeight(path, width, height)
{
	newWindow = window.open('','_blank','width='+width+',height='+height);
	if (newWindow)
	{
		newWindow.document.write('<html><head></head><body bgcolor="#000000" leftmargin="0" topmargin="0"><a href="#"><img src="'+path+'" alt="close" onClick="window.close()" style="border: 0;"></a></body></html>');
	}
}

function makeNewWindowHtml(podlazie)
{
	if(podlazie < 3)
	{
		if(podlazie == 0)
			string = '';
		else
			string = '_' + podlazie;
			
		newWindow = window.open('images/hotel/indoor/ubytovanie_hotel_zeleny_dvor_podlazie' + string + '.htm', '_blank', 'width=700,height=560,scrollbars=yes');
	}
	else
	{
		if(podlazie == 3)
			newWindow = window.open('images/hotel/indoor/ubytovanie_hotel_zeleny_dvor_izba_classic.htm', '_blank', 'width=700,height=560,scrollbars=yes');
		else
		{
			if(podlazie == 4)
				newWindow = window.open('images/hotel/indoor/ubytovanie_hotel_zeleny_dvor_izba_lux.htm', '_blank', 'width=700,height=560,scrollbars=yes');
		}
	}
}
//-->

