$(document).ready(function(){
	$('#cartExport').click(function(){ confirmChangesAndOpenLoc('default/cart/export'); });
	$('#cartImport').click(function(){
		overlib('<form action="default/cart/import" method="post" enctype="multipart/form-data" ' +
									'onsubmit="if (cartChanged() && !confirm(gUnsavedData)) return false; else return true;">' +
							'<label>' +
								'Plik z zapisaną zawartością koszyka: ' +
								'<input type="file" name="file" />' +
							'</label><br />' +
							'<button type="submit" class="styledButton">Importuj</button>' +
							'<button type="submit" class="styledButton" onclick="nd();nd();">Zamknij</button><br />' +
							'<strong>Wartości zaimportowane nadpiszą obecne wartości w koszyku!</strong>' + 
						'</form>',
						STICKY,
						CAPTION, objGetText.gettext('Import'),
						CLOSECLICK,
						CLOSETEXT, objGetText.gettext('Zamknij'));
	});
});
