brand2csv 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +14 -0
  3. data/.rspec +1 -0
  4. data/.travis.yml +26 -0
  5. data/Gemfile +4 -0
  6. data/History.txt +121 -0
  7. data/LICENCE.txt +515 -0
  8. data/Manifest.txt +54 -0
  9. data/README.md +27 -0
  10. data/Rakefile +18 -0
  11. data/bin/brand2csv +100 -0
  12. data/brand2csv.gemspec +44 -0
  13. data/lib/brand2csv.rb +594 -0
  14. data/lib/brand2csv/version.rb +3 -0
  15. data/logs/aspen_08_08_1986.html +598 -0
  16. data/logs/post.rohdaten.httpfox +1 -0
  17. data/logs/post.rohdaten.mechanize +1 -0
  18. data/logs/protocol_swissreg.log +86 -0
  19. data/logs/result_01.10.2005.jsp +598 -0
  20. data/logs/sr1.jsp +449 -0
  21. data/logs/sr3.jsp +598 -0
  22. data/logs/start.jsp +350 -0
  23. data/logs/start2.jsp +434 -0
  24. data/protocol.2013.05.12.textile +56 -0
  25. data/protocol.2013.05.15.textile +49 -0
  26. data/protocol.2013.05.21.textile +84 -0
  27. data/spec/brand2csv_spec.rb +62 -0
  28. data/spec/csv_spec.rb +57 -0
  29. data/spec/data/aspectra/detail_00001_P-480296.html +531 -0
  30. data/spec/data/aspectra/detail_00002_P-482236.html +531 -0
  31. data/spec/data/aspectra/detail_00003_641074.html +539 -0
  32. data/spec/data/aspectra/first_results.html +600 -0
  33. data/spec/data/einfache_suche.html +434 -0
  34. data/spec/data/erweiterte_suche.html +446 -0
  35. data/spec/data/main.html +350 -0
  36. data/spec/data/result_short.html +606 -0
  37. data/spec/data/resultate_1.html +446 -0
  38. data/spec/data/resultate_2.html +446 -0
  39. data/spec/data/urner_wildheu/detail_00001_57862.2013.html +516 -0
  40. data/spec/data/urner_wildheu/first_results.html +598 -0
  41. data/spec/data/vereinfachte_1.html +847 -0
  42. data/spec/data/vereinfachte_detail_33.html +516 -0
  43. data/spec/detail_spec.rb +28 -0
  44. data/spec/short_spec.rb +55 -0
  45. data/spec/simple_search.rb +43 -0
  46. data/spec/spec_helper.rb +34 -0
  47. data/spec/support/core_ext/kernel.rb +26 -0
  48. data/spec/support/server_mock_helper.rb +143 -0
  49. data/spec/swissreg_spec.rb +45 -0
  50. data/spec/trademark_numbers_spec.rb +21 -0
  51. data/spec/utilities_spec.rb +83 -0
  52. data/spike.rb +491 -0
  53. data/spike_mechanize_swissreg.rb +312 -0
  54. data/spike_watir.rb +58 -0
  55. data/swissreg.rb +75 -0
  56. metadata +86 -7
@@ -0,0 +1,56 @@
1
+ h3. started brand2csv (12 May 2013
2
+
3
+ * Added minimal files to create a Ruby gem
4
+ * Started a spike.rb to fetch some elements from swissreg.ch via mechanize
5
+ * To get familiar with mechanize used the google example
6
+ Had to replace @page.form_with(:name => 'f')@ by @page.form_with(:name => 'gbqf')@
7
+
8
+ * www.swissreg.ch must be opened with agent.verify_mode = OpenSSL::SSL::VERIFY_NONE
9
+
10
+ * Examples of a link to details for a brand record are
11
+ bc. https://www.swissreg.ch/srclient/de/tm/61082/2011
12
+ https://www.swissreg.ch/srclient/de/tm/61082/2011
13
+ https://www.swissreg.ch/srclient/faces/jsp/trademark/sr300.jsp?language=en&section=tm&id=61082/2011
14
+
15
+ * Links
16
+ ** Marken Suchen https://www.swissreg.ch/srclient/faces/jsp/start.jsp
17
+ ** Erweitertete Suchen https://www.swissreg.ch/srclient/faces/jsp/trademark/sr1.jsp
18
+ ** Resultate der Detailsuche unter https://www.swissreg.ch/srclient/faces/jsp/trademark/sr3.jsp
19
+
20
+ Wasted some time to discover that swissreg.rb does not use mechanize, but URI and hpricot to fetch the patent registration.
21
+
22
+ With watir the following few lines sufficed to fetch a detail
23
+
24
+ bc. Swiss_reg_URL = 'https://www.swissreg.ch'
25
+ client = Selenium::WebDriver::Remote::Http::Default.new
26
+ browser = Watir::Browser.new :firefox
27
+ browser.goto Swiss_reg_URL
28
+ browser.link(:id, "id_swissreg_sub_nav_ipiNavigation_item0").click
29
+ browser.link(:id, "id_swissreg_sub_nav_ipiNavigation_item0_item3").click
30
+ browser.text_field(:id, "id_swissreg:mainContent:id_txf_appDate").set("1.10.2011-5.10.2011")
31
+ browser.button(:value,"suchen").click
32
+ browser.link(:id, "id_swissreg:mainContent:data:2:tm_no_detail:id_detail").click# puts browser.text
33
+
34
+ Was not able to create a spike using either mechnize or uri/hpricot to fetch the details.
35
+
36
+ * Thoughts about the CLI interface to csv
37
+
38
+ bc. brand2csh --help
39
+ Useage brand2csh 1.10.2011-5.10.2011 [name_of_brand]
40
+ Fetches brand records from swissreg for the given date range into results.csv.
41
+ Each result contains the following fields
42
+ - date of registration
43
+ - brandname
44
+ - owner of brand
45
+ -- name
46
+ -- addressline1
47
+ -- addressline2 (optional)
48
+ -- zip code
49
+ -- city
50
+ Only owners inside Switzerland will be returned.
51
+
52
+ * Would this be a good extension?
53
+ Accumulate all given results (+ temporary result like info_line_1..x) into a sqlite database.
54
+ Would allow an easy sql manipulation of data for filtering/sorting addresses, etc.
55
+
56
+
@@ -0,0 +1,49 @@
1
+ * Added spike.rb
2
+
3
+ ** Analysed the Source View of swissreg.ch to extract the needed field information.
4
+ ** Navigating to the extended search works
5
+ ** Most fields are recognized correctly but the most important name timespan give errors
6
+ ** Queries can fail for a lot of different reasons (see bekannteFehler in spike.rb)
7
+ ** When filling the "Wortlaut der Marke" with a pattern like "asp*" the query worked, but did not respect the timespan
8
+ ** Using the interactive form I also remarked that the entered timespan was not always correctly honoured by swissreg
9
+
10
+ * Another problem is the fact that according to "swissreg":https://www.swissreg.ch/help/de/sr2000.shtm we are only able to fetch 500 records at the same time
11
+
12
+ bc. Bitte beachten Sie, dass insgesamt maximal 500 Treffer angezeigt werden. Sollte Ihre Suche mehr als 500 Treffer ergeben, wird eine vereinfachte Trefferliste angezeigt. Sollte Ihre Suche mehr als 10’000 Treffer ergeben, dann werden willkürlich 10’000 Treffer ausgewählt und angezeigt.
13
+
14
+ (Just for the recording)
15
+
16
+ * Mechanize does not work with swissreg.ch
17
+
18
+ Here the example, which shows that mechanize does not recognize the content.
19
+
20
+ bc. require 'mechanize'
21
+ require 'prettyprint'
22
+ a = Mechanize.new { |agent|
23
+ # agent.user_agent_alias = 'Mac Safari'
24
+ agent.user_agent = 'Mozilla/5.0 (X11; Linux x86_64; rv:16.0) Gecko/20100101 Firefox/16.0'
25
+ agent.redirect_ok = true
26
+ agent.redirection_limit = 5
27
+ agent.follow_meta_refresh = true
28
+ agent.verify_mode = OpenSSL::SSL::VERIFY_NONE
29
+ }
30
+ a.get('https://www.swissreg.ch/') do |page|
31
+ pp page
32
+ pp page.links.size
33
+ pp page.content
34
+ end
35
+
36
+ This returns
37
+
38
+ bc. #<Mechanize::Page
39
+ {url #<URI::HTTPS:0x000000015ad830 URL:https://www.swissreg.ch/>}
40
+ {meta_refresh}
41
+ {title nil}
42
+ {iframes}
43
+ {frames}
44
+ {links}
45
+ {forms}>
46
+ 0
47
+ "\n<head>\n<meta name=\"keywords\" \ncontent=\"Recherchen, Datenbankrecherche, Patentinformation, Patentrecherche, Patent, \nPatentamt, IGE, Eidgen\xC3\xB6sches Institut f\xC3\xBCstiges Eigentum, Infocenter, Patentsammlung, \nPatentdokument, Register, Schutzrecht, Patentgesetz, Patentverordnung, Markengesetz, Haager \nAbkommen, Erfindungen, Erfinder, Marktanalyse, Informationsvermittlung, unlauterer \nWettbewerb, Erfindungspatent, Herkunftsbezeichnungen, SHAB, PMMBl, Handelsamtsblatt, \nMarkenschutz, Marke, Namen, domain, domainnamen, Markenanmeldung, Urheberrecht, Suisa, Pro \nLiteris, SSA, SMCC, Suissimage, Verwertungsgesellschaften, Topographien, \nImmaterialg\xC3\xBCcht, espacenet, Gratisdatenbank, Design, Designschutz, Muster und \nRaubkopien, Geschmacksmuster, Gebrauchsmuster, ESZ, Schutzzertifikate\">\n\n<meta name=\"description\" \ncontent=\"Schweizer Patentamt, Patente, Marken, Design, ESZ, Urheberrecht, Recherchen, \nTopographie, Datenbanken\">\n\n<meta name=\"abstract\" \ncontent=\" Datenbankrecherchen, Patentrecherchen, Markenschutz, Markenrecherchen, Design, \nMuster Modelle, Designrecherche, Urheberrecht\">\n\n<meta name=\"revisit-after\" \ncontent=\"7 days\">\n\n<meta name=\"robots\" \ncontent=\"ALL\">\n</head>\n\n<body>\n<!--<meta http-equiv=\"refresh\" content=\"0; URL=https://www.swissreg.ch/srclient/\">-->\n<meta http-equiv=\"refresh\" content=\"0; URL=https://www.swissreg.ch/srclient/\">\n</body>\n"
48
+
49
+ * Therefore we continue using net/uri
@@ -0,0 +1,84 @@
1
+ * Work on 2013.06.02
2
+
3
+ * Checked mechanize source code. Code for posting the request seems okay
4
+ * Before sending an email to the mechanize mailing list, I decided to make a
5
+ ** simple example for the search (see swissreg.rb)
6
+ ** this simple example gives correct results
7
+ ** Differences are in how the session is setup. I don't see the exact reason however
8
+ * Adapted lib/brand2csv.rb accordingly
9
+
10
+ * Work on 2013.05.27
11
+
12
+ * Should be able to fetch up to 10'000 hits.
13
+ ** Problems: Seems to hang silently after a few thousands hits
14
+ ** Cannot limit search to only "Hängige Gesuche" and "Aktive Marken"
15
+
16
+ * Work on 2013.05.26
17
+
18
+ * Added first rake tests to speed up work for 10'000 hits
19
+ * Added second parameter to limit according to trademark name as passing a timespan is not honoured by swissreg
20
+
21
+ * Work on 2013.05.22
22
+
23
+ ** Use timespan als filename
24
+ ** corrected missing bin/brand2csv for gem
25
+ ** Better handling of adresslines like '90 route de Frontenex', 'Via San Salvatore, 2
26
+
27
+ Trimmed script for more logging in VERBOSE mode. Therefore to debug I always call the following stuff
28
+ @rm -rf mechanize/; time ruby -v bin/brand2csv 05.09.2001@
29
+
30
+ * Verified the following things
31
+ ** Get/Post request via HttpFox (see logs/protocol_swissreg.log)
32
+ ** Content of POST-Data via mechanize and HttpFox (identical except)
33
+ ** Tagged this commit as "POST_verified"
34
+
35
+ *"Cheetsheet":http://www.e-tobi.net/blog/files/ruby-mechanize-cheat-sheet.pdf
36
+
37
+ Found, that the following fields are handled correctly
38
+ # id_txf_applicant' #inhaber
39
+ # id_txf_tm_no # Markn-Nummber
40
+ # id_txf_app_no # Gesuch-nummer
41
+ # id_txf_tm_text # text of trademark
42
+ # id_cbxHitsPerPage
43
+
44
+ Fields, which are not handled and don't influence the response
45
+ # id_txf_appDate # Hinterlegungsdatum
46
+ # id_txf_licensee
47
+ # id_txf_expiryDate
48
+ # id_txf_pub_date
49
+ # id_txf_nizza_class
50
+ # id_txf_agent # Vertreter
51
+ # id_cbxCountry # Land 'CH' or '_ALL'
52
+
53
+ * Reworked the brand2csv.rb to match more closely the interactive
54
+ Checked differences in received fields from mechanize and interactive uses (in subdirectory logs)
55
+ * start.jsp: Match okay
56
+ * start2.jsp: Match okay
57
+ * sr3.jsp: are quite different
58
+
59
+ * Work on 2013.05.21
60
+
61
+ * Added spike_mechanize_swissreg.rb
62
+
63
+ Also this attempt works if I specify a trademark name or number. But it does not work, when specifying a timespan for the "Hinterlegungsdatum".
64
+ Rechecked the Javascript parameters, but I cannot see the problem.
65
+
66
+ Therefore I try no to parse the needed information from the page.
67
+
68
+ I found out that there is either the name or a an image used as the trademark.
69
+ Loading the details of a trademark using ids like the following
70
+ https://www.swissreg.ch/srclient/faces/jsp/trademark/sr300.jsp?language=en&section=tm&id=343260 # Ohne Bild
71
+ https://www.swissreg.ch/srclient/faces/jsp/trademark/sr300.jsp?language=en&section=tm&id=P-328879
72
+ takes a long time.
73
+
74
+ * Encountered problems
75
+
76
+ Long addresses are not fully displayed, e.g.
77
+ 343260 Laboratoires Sauter S.A., 46, chemin de l'Etang, Vernier;, adresse pour la correspondance:, Bureau des Marques, case ...
78
+
79
+ In this case one has to parse the detail html, which is just quite slow.
80
+
81
+ * Used tools to debug (Addons to firefox)
82
+ ** Firebug for xpath anaylsis
83
+ ** installed HttpFox to watch http transfer and verify the content of the post data. Very useful!
84
+
@@ -0,0 +1,62 @@
1
+ # encoding : utf-8
2
+ require "spec_helper"
3
+
4
+ describe Brand2csv do
5
+ describe "#validates_timespan" do
6
+ subject { validates_timespan(arg) }
7
+
8
+ context "when timespan is a single date" do
9
+ context "when invalid last day of month in a date is given" do
10
+ let(:arg) { "29.02.2010" }
11
+ it { is_expected.to eql [false, "Did you mean 28.02.2010 ?"] }
12
+ end
13
+
14
+ context "when invalid month in a date is given" do
15
+ let(:arg) { "28.13.2010" }
16
+ it { is_expected.to eql [false, "Timespan is invalid"] }
17
+ end
18
+
19
+ context "when a valid date is given" do
20
+ let(:arg) { "31.12.2010" }
21
+ it { is_expected.to eql [true, nil] }
22
+ end
23
+ end
24
+
25
+ context "when timespan is term" do
26
+ context "when invalid last day of month in start date is given" do
27
+ let(:arg) { "29.02.2010-31.03.2010" }
28
+ it { is_expected.to eql [false, "Did you mean 28.02.2010-31.03.2010 ?"] }
29
+ end
30
+
31
+ context "when invalid last day of month in end date is given" do
32
+ let(:arg) { "28.04.2010-99.03.2010" }
33
+ it { is_expected.to eql [false, "Did you mean 28.04.2010-31.03.2010 ?"] }
34
+ end
35
+
36
+ context "when invalid last day of month in both dates is given" do
37
+ let(:arg) { "32.01.2010-99.05.2010" }
38
+ it { is_expected.to eql [false, "Did you mean 31.01.2010-31.05.2010 ?"] }
39
+ end
40
+
41
+ context "when invalid month in start date is given" do
42
+ let(:arg) { "31.99.2010-31.05.2010" }
43
+ it { is_expected.to eql [false, "Timespan is invalid"] }
44
+ end
45
+
46
+ context "when invalid month in end date is given" do
47
+ let(:arg) { "31.01.2010-31.20.2010" }
48
+ it { is_expected.to eql [false, "Timespan is invalid"] }
49
+ end
50
+
51
+ context "when invalid month in both dates is given" do
52
+ let(:arg) { "31.30.2010-31.20.2010" }
53
+ it { is_expected.to eql [false, "Timespan is invalid"] }
54
+ end
55
+
56
+ context "when valid term is given" do
57
+ let(:arg) { "28.02.2010-31.05.2010" }
58
+ it { is_expected.to eql [true, nil] }
59
+ end
60
+ end
61
+ end
62
+ end
@@ -0,0 +1,57 @@
1
+ #encoding : utf-8
2
+ require 'spec_helper'
3
+ require 'tempfile'
4
+
5
+ include Brand2csv
6
+
7
+ describe 'Csv' do
8
+ before :each do
9
+ dataDir = File.expand_path(File.join(File.dirname(__FILE__), 'data'))
10
+ session = Swissreg.new("01.01.1990", 'Branding')
11
+ filename = "#{dataDir}/vereinfachte_detail_33.html"
12
+ expect(File.exists?(filename)).to be_truthy
13
+ doc = Nokogiri::Slop(File.open(filename))
14
+ @marke = Swissreg::getMarkenInfoFromDetail(doc)
15
+ end
16
+
17
+ it "must be able to create a correct csv file" do
18
+ results = [@marke]
19
+ file = Tempfile.new('foo')
20
+ Swissreg::emitCsv(results, file.path)
21
+ inhalte = IO.readlines(file.path)
22
+ expect(inhalte[0].chomp).to eq('name;markennummer;inhaber;land;hatVertreter;hinterlegungsdatum;zeile_1;zeile_2;zeile_3;zeile_4;zeile_5;plz;ort')
23
+ expect(inhalte[1].chomp).to eq('https://www.swissreg.ch/srclient/images/loadImage?Action=LoadImg&ItemType=tm&ImageType=print&ImageHash=F431E13A9D8F363BD06604796634142A18A5BA7C.jpeg;00135/2013;Peter Löcker Bauart, Trollstrasse 20, 8400 Winterthur;Schweiz;Nein;13.03.2013;Peter Löcker Bauart;Trollstrasse 20;;;;8400;Winterthur')
24
+ expect(inhalte[2]).to eq(nil)
25
+ end
26
+
27
+ end
28
+ describe 'CSV with matching addresses' do
29
+ before :each do
30
+ dataDir = File.expand_path(File.join(File.dirname(__FILE__), 'data'))
31
+ @results = []
32
+ session = Swissreg.new("01.01.1990", 'Branding')
33
+ [ 'detail_00001_P-480296.html', 'detail_00002_P-482236.html'].each do |name|
34
+ filename = "#{dataDir}/aspectra/#{name}"
35
+ expect(File.exists?(filename)).to be_truthy
36
+ doc = Nokogiri::Slop(File.open(filename))
37
+ @results << Swissreg::getMarkenInfoFromDetail(doc)
38
+ end
39
+ end
40
+
41
+ Inhaber = 'Aspectra AG, Weberstrasse 4, 8004 Zürich'
42
+ First_TM = '08326/2000'
43
+ Second_TM = '10702/2000'
44
+
45
+ it "must create a csv file with only one address" do
46
+ file = Tempfile.new('foo_aspectr')
47
+ Swissreg::emitCsv(@results, file.path)
48
+ inhalte = IO.readlines(file.path)
49
+ expect(@results[0].markennummer).to eq First_TM
50
+ expect(@results[0].inhaber).to eq Inhaber
51
+ expect(@results[1].markennummer).to eq Second_TM
52
+ expect(@results[1].inhaber).to eq Inhaber
53
+ expect(inhalte[1].split(';')[2]).to eq Inhaber
54
+ expect(inhalte[1].split(';')[1]).to eq First_TM
55
+ expect(inhalte[2]).to be_nil
56
+ end
57
+ end
@@ -0,0 +1,531 @@
1
+
2
+
3
+
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
14
+ <html xmlns="http://www.w3.org/1999/xhtml" lang="de">
15
+
16
+ <head>
17
+ <title>Swissreg - Eidg. Institut für Geistiges Eigentum</title>
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
26
+ <meta http-equiv="cache-control" content="private,no-cache,no-store"/>
27
+ <meta http-equiv="language" content="de, fr, it, en" />
28
+ <meta name="keywords" content="Recherchen, Datenbankrecherche, Patentinformation, Patentrecherche, Patent, Patentamt, IGE, Eidgen�ssisches Institut f�r Geistiges Eigentum, Infocenter, Patentsammlung, Patentdokument, Register, Schutzrecht, Patentgesetz, Patentverordnung, Markengesetz, Haager Abkommen, Erfindungen, Erfinder, Marktanalyse, Informationsvermittlung, unlauterer Wettbewerb, Erfindungspatent, Herkunftsbezeichnungen, SHAB, PMMBl, Handelsamtsblatt, Markenschutz, Marke, Namen, domain, domainnamen, Markenanmeldung, Urheberrecht, Suisa, Pro Literis, SSA, SMCC, Suissimage, Verwertungsgesellschaften, Topographien, Immaterialgüterrecht, espacenet, Gratisdatenbank, Design, Designschutz, Muster und Raubkopien, Geschmacksmuster, Gebrauchsmuster, ESZ, Schutzzertifikate"/>
29
+ <meta name="description" content="Schweizer Patentamt, Patente, Marken, Design, ESZ, Urheberrecht, Recherchen, Topographie, Datenbanken"/>
30
+ <meta name="abstract" content=" Datenbankrecherchen, Patentrecherchen, Markenschutz, Markenrecherchen, Design, Muster Modelle, Designrecherche, Urheberrecht"/>
31
+ <meta name="robots" content="noindex" />
32
+ <meta name="robots" content="nofollow" />
33
+ <meta name="publisher" content="Eidg. Institut f&uuml;r Geistiges Eigentum"/>
34
+ <link rel="shortcut icon" href='/srclient/img/favicon.ico'/>
35
+ <link rel="stylesheet" type="text/css" href='/srclient/css/base.css' media="screen" />
36
+ <link rel="stylesheet" type="text/css" href='/srclient/css/print.css' media="print" />
37
+ <script type="text/javascript" src='/srclient/js/sr2.js'></script>
38
+
39
+
40
+ </head>
41
+
42
+ <body class="hitlist" onload="self.focus();">
43
+ <form id="id_swissreg" name="id_swissreg" method="post" action="/srclient/faces/jsp/trademark/sr300.jsp" enctype="application/x-www-form-urlencoded">
44
+
45
+
46
+
47
+ <div id="header"><table class="wMax"><tbody><tr><td class="textLeft"><span class="textLeft">
48
+ <a name="anchor_home" id="anchor_home"></a>
49
+ <a id="id_swissreg:sub_language:link_home" name="id_swissreg:sub_language:link_home" href="http://www.ige.ch/de.html" accesskey="0" target="_blank"><img id="id_swissreg:sub_language:logswissreg" src="/srclient/img/ige_logo_86.png" alt="Logo IPI" /></a></span></td><td class="center"><span id="id_swissreg:sub_language:breadcrum" class="breadcrum"><a id="id_swissreg:sub_language:breadcrum_link" name="id_swissreg:sub_language:breadcrum_link" href="http://www.ige.ch/de.html" target="_blank">ige.ch</a> &gt; elektronische Schutzrechtdatenbank</span></td><td class="right"><div id="language"><div id="header_app_name">swissreg</div></div></td></tr>
50
+ </tbody></table></div>
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+ <div id="navigation"><script type="text/javascript"><!--
66
+
67
+
68
+ function oamSetHiddenInput(formname, name, value)
69
+ {
70
+ var form = document.forms[formname];
71
+ if(typeof form.elements[name]=='undefined')
72
+ {
73
+ var newInput = document.createElement('input');
74
+ newInput.setAttribute('type','hidden');
75
+ newInput.setAttribute('name',name);
76
+ newInput.setAttribute('value',value);
77
+ form.appendChild(newInput);
78
+ }
79
+ else
80
+ {
81
+ form.elements[name].value=value;
82
+ }
83
+
84
+ }
85
+
86
+
87
+ function oamClearHiddenInput(formname, name, value)
88
+ {
89
+ var form = document.forms[formname];
90
+ if(typeof form.elements[name]!='undefined')
91
+ {
92
+ form.elements[name].value=null;
93
+ }
94
+
95
+ }
96
+
97
+ function oamSubmitForm(formName, linkId, target, params)
98
+ {
99
+
100
+ var clearFn = 'clearFormHiddenParams_'+formName.replace(/-/g, '\$:').replace(/:/g,'_');
101
+ if(typeof eval('window.'+clearFn)!='undefined')
102
+ {
103
+ eval('window.'+clearFn+'(formName)');
104
+ }
105
+
106
+ if(typeof window.getScrolling!='undefined')
107
+ {
108
+ oamSetHiddenInput(formName,'autoScroll',getScrolling());
109
+ }
110
+
111
+ var oldTarget = '';
112
+ if((typeof target!='undefined') && target != null)
113
+ {
114
+ oldTarget=document.forms[formName].target;
115
+ document.forms[formName].target=target;
116
+ }
117
+ if((typeof params!='undefined') && params != null)
118
+ {
119
+ for(var i=0; i<params.length; i++)
120
+ {
121
+ oamSetHiddenInput(formName,params[i][0], params[i][1]);
122
+ }
123
+
124
+ }
125
+
126
+ oamSetHiddenInput(formName,formName +':'+'_idcl',linkId);
127
+
128
+ if(document.forms[formName].onsubmit)
129
+ {
130
+ var result=document.forms[formName].onsubmit();
131
+ if((typeof result=='undefined')||result)
132
+ {
133
+ document.forms[formName].submit();
134
+ }
135
+
136
+ }
137
+ else
138
+ {
139
+ document.forms[formName].submit();
140
+ }
141
+ if(oldTarget==null) oldTarget='';
142
+ document.forms[formName].target=oldTarget;
143
+ if((typeof params!='undefined') && params != null)
144
+ {
145
+ for(var i=0; i<params.length; i++)
146
+ {
147
+ oamClearHiddenInput(formName,params[i][0], params[i][1]);
148
+ }
149
+
150
+ }
151
+
152
+ oamClearHiddenInput(formName,formName +':'+'_idcl',linkId);return false;
153
+ }
154
+
155
+
156
+ //--></script><a href="#" onclick="return oamSubmitForm('id_swissreg','id_swissreg:sub_detailheader:link_header_home');" id="id_swissreg:sub_detailheader:link_header_home" accesskey="0" title="zur Startseite">Home</a>
157
+ <input type="hidden" name="autoScroll" />
158
+ &nbsp;|&nbsp;<a href="#" onclick="javascript:window.close();return oamSubmitForm('id_swissreg','id_swissreg:sub_detailheader:link_header_close');" id="id_swissreg:sub_detailheader:link_header_close">Schliessen</a>&nbsp;|&nbsp;</div>
159
+
160
+
161
+
162
+
163
+
164
+
165
+
166
+
167
+
168
+
169
+
170
+
171
+
172
+
173
+
174
+ <div id="content2">
175
+
176
+ <div id="options">
177
+
178
+
179
+ <h1 class="non_printable">Detailansicht zu Marken Nr.: P-480296<span class="info">Was Sie über <a id="id_swissreg:sub_title:_idJsp28" href="https://www.swissreg.ch/help/de/trademark/sr1000.shtm#anchor_detail" target="_blank" style="cursor:help;"><strong>diese Detailansicht</strong></a> wissen sollten.</span></h1>
180
+
181
+
182
+
183
+
184
+
185
+
186
+
187
+
188
+
189
+
190
+
191
+
192
+
193
+
194
+
195
+
196
+
197
+
198
+
199
+
200
+
201
+
202
+
203
+
204
+
205
+
206
+
207
+
208
+
209
+
210
+
211
+
212
+
213
+
214
+
215
+
216
+
217
+
218
+
219
+
220
+
221
+
222
+
223
+
224
+ <fieldset class="non_printable"><legend>Aktionen</legend><table border="0" cellpadding="0" cellspacing="0"><tbody><tr><td class="w250"><span style="display: block;" class="row0">Schutztitel</span></td><td class="w450"><span style="display: block;" class="row0">Info</span></td></tr>
225
+ <tr><td class="w250"><a href="#" onclick="return oamSubmitForm('id_swissreg','id_swissreg:mainContent:sub_actions:id_pdf_detail');" id="id_swissreg:mainContent:sub_actions:id_pdf_detail">PDF (A4/hoch)</a></td><td class="w450">PDF zum aktuellen Schutztitel erstellen</td></tr>
226
+ <tr><td class="w250"><a id="id_swissreg:mainContent:sub_actions:_idJsp44" name="id_swissreg:mainContent:sub_actions:_idJsp44" href="mailto:?subject=Swissreg - Detailansicht zu Marken Nr.: P-480296&amp;body=%0Ahttps://www.swissreg.ch/srclient/de/tm/P-480296%0A%0Ahttps://www.swissreg.ch/srclient/faces/jsp/trademark/sr300.jsp?language=de%26section=tm%26id=P-480296&language=de&section=tm&id=P-480296">Versenden</a></td><td class="w450">Weblink des aktuellen Schutztitel per Email versenden</td></tr>
227
+ </tbody></table></fieldset><div class="non_printable"><fieldset><legend>Navigation</legend><img src="/srclient/img/arrow_first_disable.png" />&nbsp;<img src="/srclient/img/arrow_previous_disable.png" />&nbsp;<img src="/srclient/img/arrow_next_disable.png" />&nbsp;<img src="/srclient/img/arrow_last_disable.png" /></fieldset></div><a name="anchor_register" id="anchor_register"></a><fieldset class="result"><legend><strong>Aktueller Stand</strong><span class="non_printable">&nbsp;(&nbsp;<a id="id_swissreg:mainContent:link_reg_show" name="id_swissreg:mainContent:link_reg_show" href="#" onclick="detailShow('register'); return false;">einblenden</a>&nbsp;/&nbsp;<a id="id_swissreg:mainContent:link_reg_hide" name="id_swissreg:mainContent:link_reg_hide" href="#" onclick="detailHide('register'); return false;">ausblenden</a>&nbsp;)&nbsp;|&nbsp;<a id="id_swissreg:mainContent:link_snapshot" name="id_swissreg:mainContent:link_snapshot" href="#anchor_snapshot">Stand zum Zeitpunkt der Eintragung</a>&nbsp;|&nbsp;<a id="id_swissreg:mainContent:link_history" name="id_swissreg:mainContent:link_history" href="#anchor_history">Historie</a></span></legend><div id="register">
228
+ <table id="id_swissreg:mainContent:data" class="small-border">
229
+ <thead>
230
+ <tr><th class="row0">Bezeichnung</th><th class="row0"></th></tr></thead>
231
+ <tbody id="id_swissreg:mainContent:data:tbody_element">
232
+ <tr class="row1" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Auszug vom</td><td class="w500">23.09.2013</td></tr>
233
+ <tr class="row2" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Status</td><td class="w500"><strong>aktive Marke</strong></td></tr>
234
+ <tr class="row1" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Marken Nr.</td><td class="w500">P-480296</td></tr>
235
+ <tr class="row2" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Hinterlegungsdatum</td><td class="w500">13.07.2000</td></tr>
236
+ <tr class="row1" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Ablauf Schutzfrist</td><td class="w500">13.07.2020</td></tr>
237
+ <tr class="row2" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Quelle erste Veröffentlichung</td><td class="w500">SHAB-Nr.24 vom 05.02.2001</td></tr>
238
+ <tr class="row1" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Gesuch Nr.</td><td class="w500">08326/2000</td></tr>
239
+ <tr class="row2" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Marke</td><td class="w500"><strong>ASPECTRA</strong></td></tr>
240
+ <tr class="row1" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Inhaber/in</td><td class="w500">Aspectra AG<br/>Weberstrasse 4<br/>8004 Zürich</td></tr>
241
+ <tr class="row2" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Vertreter/in</td><td class="w500">A.W. Metz &amp; Co. AG<br/>Hottingerstrasse 14<br/>8024 Zürich</td></tr>
242
+ <tr class="row1" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Waren und Dienstleistungen</td><td class="w500"><strong>9</strong><br/>Computerhardware, -middleware und -software, Geräte zur Aufzeichnung, Uebertragung und Wiedergabe von Ton, Bild und Daten; Hardware für Computernetzwerke.<br/><br/><strong>35</strong><br/>Werbung, Geschäftsführung, Unternehmensverwaltung, Büroarbeiten.<br/><br/><strong>37</strong><br/>Wartungsdienstleistungen für Internet-Server und Hardware für Internet-Applikationen; Implementieren, Integrieren und Warten von Computerhardware und Netzwerkinfrastrukturen für den Betrieb Internet-basierter komplexer Websites und E-Business Applikationen.<br/><br/><strong>38</strong><br/>Telekommunikation.<br/><br/><strong>42</strong><br/>Erstellen von Programmen für die Datenverarbeitung; Design, Einspeisung und Unterhalt (Aktualisierung von Computer-Software) von Homepages in Computernetzwerke (namentlich Internet); Vermietung von Zugriffszeit auf Computerdatenbanken, von Computern und Servern; Erteilen von Auskünften bezüglich dem Zugang zu und dem Zugriff auf Informationen, Nachrichten, Text, Ton, Bilder und Daten über einen Computer oder ein Computernetzwerk; Design, Erstellung und Unterhalt von Software für kommerzielle Plattformen für Online-Angebote von Waren und Dienstleistungen in Computernetzwerken (Internet), einschliesslich Beratung für Dritte für diese Tätigkeiten; Design, Erstellung und Unterhalt von Software für Plattformen für Angebote für Engros- und Detailhandel über Computernetzwerke (namentlich Internet), einschliesslich Beratung für Dritte für diese Tätigkeiten; Design, Erstellung und Unterhalt von Software von Plattformen für Online-Angebote in Computernetzwerken für Waren und Dienstleistungen; Dienstleistungen im Softwarebereich eines Informatikers für Online-Shopping; Bereitstellung und Darstellung von Informationen von einer auf Computer gespeicherten Datenbank; Vermietung und Wartung von Speicherplätzen zur Benutzung als Websites für Dritte (hosting); Wartungdienstleistungen für Software zu Internet-Sites und für Software für Internet-Applikationen; Zurverfügungstellung von Computer-Sicherheitsdienstleistungen für die Kommunikation im Internet; technische Unterstützungsdienstleistungen bezüglich die Planung von Computer Hard-, Mittel- und Software (application infrastructure providing/dedicated hosting); Computerberatungs- und Unterstützungsdienstleistungen im Bereich Internet-basierter komplexer Web-Sites und E-Business Applikationen; Implementieren, Integrieren und Warten von Computersoftware für den Betrieb Internet-basierter komplexer Websites und E-Business Applikationen (application service providing); Beratungsdienstleistungen im Bereich der Implementierung, Integration und Wartung von Computerhardware, Computersoftware und Netzwerkinfrastrukturen für den Betrieb Internet-basierter komplexer Websites und E-Business Applikationen.<br/></td></tr>
243
+ <tr class="row2" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Nizza Klassifikation Nr.</td><td class="w500">9, 35, 37 - 38, 42</td></tr>
244
+ <tr class="row1" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Eintragung ins Markenregister</td><td class="w500">13.01.2001</td></tr>
245
+ <tr class="row2" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Widerspruchsstatus</td><td class="w500">kein Widerspruch erhoben</td></tr>
246
+ <tr class="row1" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Datum techn. Aktualisierung</td><td class="w500">24.11.2010</td></tr></tbody></table>
247
+ </div></fieldset><a name="anchor_snapshot" id="anchor_snapshot"></a><fieldset class="result"><legend><strong>Stand zum Zeitpunkt der Eintragung</strong><span class="non_printable">&nbsp;(&nbsp;<a id="id_swissreg:mainContent:link_reg_show" name="id_swissreg:mainContent:link_reg_show" href="#" onclick="detailShow('snapshot'); return false;">einblenden</a>&nbsp;/&nbsp;<a id="id_swissreg:mainContent:link_reg_hide" name="id_swissreg:mainContent:link_reg_hide" href="#" onclick="detailHide('snapshot'); return false;">ausblenden</a>&nbsp;)&nbsp;|&nbsp;<a id="id_swissreg:mainContent:link_register" name="id_swissreg:mainContent:link_register" href="#anchor_register">Aktueller Stand</a>&nbsp;|&nbsp;<a id="id_swissreg:mainContent:link_history" name="id_swissreg:mainContent:link_history" href="#anchor_history">Historie</a></span></legend><div id="snapshot" style="display:none;"><span class="infomsg">Der Stand der Marke im Zeitpunkt der Eintragung ist im SHAB Nr. 24 vom 05.02.2001 wiedergegeben.</span></div></fieldset><a name="anchor_history" id="anchor_history"></a><fieldset class="result"><legend><strong>Historie</strong><span class="non_printable">&nbsp;(&nbsp;<a id="id_swissreg:mainContent:link_history_show" name="id_swissreg:mainContent:link_history_show" href="#" onclick="detailShow('history'); return false;">einblenden</a>&nbsp;/&nbsp;<a id="id_swissreg:mainContent:link_history_hide" name="id_swissreg:mainContent:link_history_hide" href="#" onclick="detailHide('history'); return false;">ausblenden</a>&nbsp;)&nbsp;|&nbsp;<a id="id_swissreg:mainContent:link_register" name="id_swissreg:mainContent:link_register" href="#anchor_register">Aktueller Stand</a>&nbsp;|&nbsp;<a id="id_swissreg:mainContent:link_snapshot" name="id_swissreg:mainContent:link_snapshot" href="#anchor_snapshot">Stand zum Zeitpunkt der Eintragung</a></span></legend><div id="history">
248
+ <table id="id_swissreg:mainContent:historyData" class="small-border">
249
+ <thead>
250
+ <tr><th class="row0">Datum</th><th class="row0">Registeränderung</th></tr></thead>
251
+ <tbody id="id_swissreg:mainContent:historyData:tbody_element">
252
+ <tr class="row1" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200"><strong>13.01.2001</strong></td><td class="w500"><strong>Eintragung</strong><br/><br/><strong>Inhaber/in</strong><br/>Aspectra AG<br/>Zeughausstrasse 31<br/>8021 Zürich<br/>Gültig bis: 08.07.2009<br/><br/>Veröffentlicht im SHAB-Nr. 24 vom 05.02.2001<div class="historyPrintPadding">&nbsp;</div></td></tr>
253
+ <tr class="row2" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200"><strong>08.07.2009</strong></td><td class="w500"><strong>Adressänderung des Markeninhabers</strong><br/><br/><strong>Inhaber/in</strong><br/>Aspectra AG<br/>Stationsstrasse 17<br/>8003 Zürich<br/>Gültig bis: 23.11.2010<br/><br/>Veröffentlicht in Swissreg am 14.07.2009<div class="historyPrintPadding">&nbsp;</div></td></tr>
254
+ <tr class="row1" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200"><strong>13.07.2010</strong></td><td class="w500"><strong>Verlängerung für 10 Jahre</strong><br/><br/><br/>Schutzfrist ab: 13.07.2010
255
+ <br/><br/>Veröffentlicht in Swissreg am 20.07.2010<div class="historyPrintPadding">&nbsp;</div></td></tr>
256
+ <tr class="row2" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200"><strong>23.11.2010</strong></td><td class="w500"><strong>Adressänderung des Markeninhabers</strong><br/><br/><strong>Inhaber/in</strong><br/>Aspectra AG<br/>Weberstrasse 4<br/>8004 Zürich<br/><br/>Veröffentlicht in Swissreg am 24.11.2010<div class="historyPrintPadding">&nbsp;</div></td></tr></tbody></table>
257
+ </div></fieldset><div class="non_printable"><fieldset><legend>Navigation</legend><img src="/srclient/img/arrow_first_disable.png" />&nbsp;<img src="/srclient/img/arrow_previous_disable.png" />&nbsp;<img src="/srclient/img/arrow_next_disable.png" />&nbsp;<img src="/srclient/img/arrow_last_disable.png" /></fieldset></div><fieldset class="non_printable"><legend>Aktionen</legend><table border="0" cellpadding="0" cellspacing="0"><tbody><tr><td class="w250"><span style="display: block;" class="row0">Schutztitel</span></td><td class="w450"><span style="display: block;" class="row0">Info</span></td></tr>
258
+ <tr><td class="w250"><a href="#" onclick="return oamSubmitForm('id_swissreg','id_swissreg:mainContent:sub_actions2:id_pdf_detail');" id="id_swissreg:mainContent:sub_actions2:id_pdf_detail">PDF (A4/hoch)</a></td><td class="w450">PDF zum aktuellen Schutztitel erstellen</td></tr>
259
+ <tr><td class="w250"><a id="id_swissreg:mainContent:sub_actions2:_idJsp169" name="id_swissreg:mainContent:sub_actions2:_idJsp169" href="mailto:?subject=Swissreg - Detailansicht zu Marken Nr.: P-480296&amp;body=%0Ahttps://www.swissreg.ch/srclient/de/tm/P-480296%0A%0Ahttps://www.swissreg.ch/srclient/faces/jsp/trademark/sr300.jsp?language=de%26section=tm%26id=P-480296&language=de&section=tm&id=P-480296">Versenden</a></td><td class="w450">Weblink des aktuellen Schutztitel per Email versenden</td></tr>
260
+ </tbody></table></fieldset>
261
+
262
+
263
+
264
+
265
+
266
+
267
+
268
+
269
+
270
+
271
+
272
+
273
+
274
+
275
+
276
+
277
+
278
+
279
+
280
+
281
+
282
+
283
+
284
+
285
+
286
+
287
+
288
+
289
+
290
+
291
+
292
+
293
+
294
+
295
+
296
+
297
+
298
+
299
+
300
+
301
+
302
+
303
+
304
+
305
+
306
+
307
+
308
+
309
+
310
+
311
+
312
+
313
+
314
+
315
+
316
+
317
+
318
+
319
+
320
+
321
+
322
+
323
+
324
+
325
+
326
+
327
+
328
+
329
+
330
+
331
+
332
+
333
+
334
+
335
+
336
+
337
+
338
+
339
+
340
+
341
+
342
+
343
+
344
+
345
+
346
+
347
+
348
+
349
+
350
+
351
+
352
+
353
+
354
+
355
+
356
+
357
+
358
+
359
+
360
+
361
+
362
+
363
+
364
+
365
+
366
+
367
+
368
+
369
+
370
+
371
+
372
+
373
+
374
+
375
+
376
+
377
+
378
+
379
+
380
+
381
+
382
+
383
+
384
+
385
+
386
+
387
+
388
+
389
+
390
+
391
+
392
+
393
+
394
+
395
+
396
+
397
+
398
+
399
+
400
+
401
+
402
+
403
+
404
+
405
+
406
+
407
+
408
+
409
+
410
+
411
+
412
+
413
+
414
+
415
+
416
+
417
+
418
+
419
+
420
+
421
+
422
+
423
+
424
+
425
+
426
+
427
+
428
+
429
+
430
+
431
+
432
+
433
+
434
+
435
+
436
+
437
+
438
+
439
+
440
+
441
+
442
+
443
+
444
+
445
+
446
+
447
+
448
+
449
+
450
+
451
+
452
+
453
+
454
+
455
+
456
+
457
+
458
+
459
+
460
+
461
+
462
+ </div>
463
+ </div>
464
+
465
+
466
+
467
+ <div id="footer"><a id="id_swissreg:sub_detailfooter:link_footer_top_of_page" name="id_swissreg:sub_detailfooter:link_footer_top_of_page" href="#anchor_home" title="Seitenanfang">Seitenanfang</a>&nbsp;|&nbsp;<a id="id_swissreg:sub_detailfooter:link_footer_help" name="id_swissreg:sub_detailfooter:link_footer_help" href="https://www.swissreg.ch/help/de/sr2000.shtm" accesskey="6" target="_blank" title="Hilfe">Hilfe</a>&nbsp;|&nbsp;<a href="#" onclick="javascript:window.close();return oamSubmitForm('id_swissreg','id_swissreg:sub_detailfooter:link_footer_close');" id="id_swissreg:sub_detailfooter:link_footer_close">Schliessen</a>&nbsp;|&nbsp;</div>
468
+
469
+
470
+
471
+
472
+
473
+
474
+
475
+
476
+
477
+
478
+
479
+
480
+
481
+
482
+
483
+
484
+ <div id="session"></div>
485
+
486
+ <input type="hidden" name="id_swissreg_SUBMIT" value="1" /><input type="hidden" name="id_swissreg:_idcl" /><input type="hidden" name="id_swissreg:_link_hidden_" /><script type="text/javascript"><!--
487
+
488
+ function clear_id_5Fswissreg()
489
+ {
490
+ clearFormHiddenParams_id_swissreg('id_swissreg');
491
+ }
492
+
493
+ function clearFormHiddenParams_id_swissreg(currFormName)
494
+ {
495
+ var f = document.forms['id_swissreg'];
496
+ f.elements['id_swissreg:_idcl'].value='';
497
+ f.elements['id_swissreg:_link_hidden_'].value='';
498
+ f.target='';
499
+ }
500
+
501
+ clearFormHiddenParams_id_swissreg();
502
+ //--></script><input type="hidden" name="javax.faces.ViewState" id="javax.faces.ViewState" value="rO0ABXVyABNbTGphdmEubGFuZy5PYmplY3Q7kM5YnxBzKWwCAAB4cAAAAAN0AAE1cHQAGC9qc3AvdHJhZGVtYXJrL3NyMzAwLmpzcA==" /></form>
503
+ <!-- MYFACES JAVASCRIPT -->
504
+
505
+ <script type="text/javascript"><!--
506
+
507
+ function getScrolling()
508
+ {
509
+ var x = 0; var y = 0;if (self.pageXOffset || self.pageYOffset)
510
+ {
511
+ x = self.pageXOffset;
512
+ y = self.pageYOffset;
513
+ }
514
+ else if ((document.documentElement && document.documentElement.scrollLeft)||(document.documentElement && document.documentElement.scrollTop))
515
+ {
516
+ x = document.documentElement.scrollLeft;
517
+ y = document.documentElement.scrollTop;
518
+ }
519
+ else if (document.body)
520
+ {
521
+ x = document.body.scrollLeft;
522
+ y = document.body.scrollTop;
523
+ }
524
+ return x + "," + y;
525
+ }
526
+
527
+ //--></script>
528
+
529
+ </body>
530
+
531
+ </html>