function OpenNewWindow(path,vert)
	{
		if ( vert == 1 ) { winy = 896; winx = 629; }
		else { winx = 896; winy = 629; }
		NewWindow=window.open("","Picture","width=" + winx + ",height=" + winy + ",scrollbars=no,dependent=yes");
		NewWindow.document.write ("<html><head><title>Wycieczki.us.com</title><link href='popup.css' rel='stylesheet' type='text/css'></head>");
		NewWindow.document.write ("<body bgcolor='#000000' onload='focus()'>");
		NewWindow.document.write ("<img class='picture' src='" + path + "' />");
		NewWindow.document.write ("</body></html>");
		NewWindow.document.close();
   	}

