summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/autofill/heuristics/input/09_register_google.com.html
blob: da49c31bb70de4bf0031f40c469eadcfcaa1298c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
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
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
<html>
<!--Form Location: https://www.google.com/accounts/NewAccount?service=mail&continue=http://mail.google.com/mail/e-11-2dbc28e240ea30b136df0a1112b85e-47965d1ced79eec4c8289f321c90a286e20bf7be&type=2--><head>
<title>Google Accounts</title>
</head>
<body bgcolor="#ffffff" text="#000000" link="#0000cc" vlink="#551a8b" alink="#ff0000" dir="ltr" >



<form action="/accounts/NewAccount?service=mail&amp;continue=http%3A%2F%2Fmail.google.com%2Fmail%2Fe-11-2dbc28e240ea30b136df0a1112b85e-47965d1ced79eec4c8289f321c90a286e20bf7be&amp;type=2" id="gaia_langform" method="POST">
  <input type="hidden" name="continue" id="continue" value="http://mail.google.com/mail/e-11-2dbc28e240ea30b136df0a1112b85e-47965d1ced79eec4c8289f321c90a286e20bf7be"><input type="hidden" name="service" id="service" value="mail"><input type="hidden" name="type" id="type" value="2"><font face="Arial, sans-serif" size="-1">
  Change Language:
  </font>
  <select dir="ltr" class="gaia_lce_select" name="hl" ><option value="ms">
  Bahasa Malaysia
  </option>
<option value="ca">
  Catal&#195;&#160;
  </option>
<option value="da">
  Dansk
  </option>
<option value="de">
  Deutsch
  </option>
<option value="en" selected>
  English
  </option>
<option value="en-GB">
  English (UK)
  </option>
<option value="es">
  Espa&#195;&#177;ol
  </option>
<option value="eu">
  Euskara
  </option>
<option value="fil">
  Filipino
  </option>
<option value="fr">
  Fran&#195;&#167;ais
  </option>
<option value="hr">
  Hrvatski
  </option>
<option value="in">
  Indonesia
  </option>
<option value="it">
  Italiano
  </option>
<option value="sw">
  Kiswahili
  </option>
<option value="lv">
  Latvie&#197;&#161;u valoda
  </option>
<option value="lt">
  Lietuvi&#197;&#179;
  </option>
<option value="nl">
  Nederlands
  </option>
<option value="no">
  Norsk
  </option>
<option value="pt-BR">
  Portugu&#195;&#170;s (Brasil)
  </option>
<option value="pt-PT">
  Portugu&#195;&#170;s (Portugal)
  </option>
<option value="ro">
  Rom&#195;&#162;n&#196;&#131;
  </option>
<option value="sk">
  Sloven&#196;&#141;ina
  </option>
<option value="sl">
  Sloven&#197;&#161;&#196;&#141;ina
  </option>
<option value="sv">
  Svenska
  </option>
<option value="tl">
  Tagalog
  </option>
<option value="vi">
  Ti&#225;&#186;&#191;ng Vi&#225;&#187;&#135;t
  </option>
<option value="tr">
  T&#195;&#188;rk&#195;&#167;e
  </option>
<option value="et">
  eesti keel
  </option>
<option value="hu">
  magyar
  </option>
<option value="pl">
  polski
  </option>
<option value="fi">
  suomi
  </option>
<option value="is">
  &#195;&#173;slenska
  </option>
<option value="cs">
  &#196;&#141;e&#197;&#161;tina
  </option>
<option value="el">
  &#206;&#149;&#206;&#187;&#206;&#187;&#206;&#183;&#206;&#189;&#206;&#185;&#206;&#186;&#206;&#172;
  </option>
<option value="ru">
  &#208;&#160;&#209;&#131;&#209;&#129;&#209;&#129;&#208;&#186;&#208;&#184;&#208;&#185;
  </option>
<option value="uk">
  &#208;&#163;&#208;&#186;&#209;&#128;&#208;&#176;&#209;&#151;&#208;&#189;&#209;&#129;&#209;&#140;&#208;&#186;&#208;&#176;
  </option>
<option value="bg">
  &#208;&#177;&#209;&#138;&#208;&#187;&#208;&#179;&#208;&#176;&#209;&#128;&#209;&#129;&#208;&#186;&#208;&#184;
  </option>
<option value="sr">
  &#209;&#129;&#209;&#128;&#208;&#191;&#209;&#129;&#208;&#186;&#208;&#184;
  </option>
<option value="iw">
  &#215;&#162;&#215;&#145;&#215;&#168;&#215;&#153;&#215;&#170;
  </option>
<option value="ur">
  &#216;&#167;&#216;&#177;&#216;&#175;&#217;&#136;
  </option>
<option value="ar">
  &#216;&#167;&#217;&#132;&#216;&#185;&#216;&#177;&#216;&#168;&#217;&#138;&#216;&#169;
  </option>
<option value="mr">
  &#224;&#164;&#174;&#224;&#164;&#176;&#224;&#164;&#190;&#224;&#164;&#160;&#224;&#165;&#128;
  </option>
<option value="hi">
  &#224;&#164;&#185;&#224;&#164;&#191;&#224;&#164;&#168;&#224;&#165;&#141;&#224;&#164;&#166;&#224;&#165;&#128;
  </option>
<option value="bn">
  &#224;&#166;&#172;&#224;&#166;&#190;&#224;&#166;&#130;&#224;&#166;&#178;&#224;&#166;&#190;
  </option>
<option value="gu">
  &#224;&#170;&#151;&#224;&#171;&#129;&#224;&#170;&#156;&#224;&#170;&#176;&#224;&#170;&#190;&#224;&#170;&#164;&#224;&#171;&#128;
  </option>
<option value="or">
  &#224;&#172;&#147;&#224;&#172;&#161;&#224;&#172;&#191;&#224;&#172;&#134;
  </option>
<option value="ta">
  &#224;&#174;&#164;&#224;&#174;&#174;&#224;&#174;&#191;&#224;&#174;&#180;&#224;&#175;&#141;
  </option>
<option value="te">
  &#224;&#176;&#164;&#224;&#177;&#134;&#224;&#176;&#178;&#224;&#177;&#129;&#224;&#176;&#151;&#224;&#177;&#129;
  </option>
<option value="kn">
  &#224;&#178;&#149;&#224;&#178;&#168;&#224;&#179;&#141;&#224;&#178;&#168;&#224;&#178;&#161;
  </option>
<option value="ml">
  &#224;&#180;&#174;&#224;&#180;&#178;&#224;&#180;&#175;&#224;&#180;&#190;&#224;&#180;&#179;&#224;&#180;&#130;
  </option>
<option value="th">
  &#224;&#185;&#132;&#224;&#184;&#151;&#224;&#184;&#162;
  </option>
<option value="am">
  &#225;&#138;&#160;&#225;&#136;&#155;&#225;&#136;&#173;&#225;&#138;&#155;
  </option>
<option value="zh-TW">
  &#228;&#184;&#173;&#230;&#150;&#135; (&#231;&#185;&#129;&#233;&#171;&#148;)
  </option>
<option value="zh-CN">
  &#228;&#184;&#173;&#230;&#150;&#135;&#239;&#188;&#136;&#231;&#174;&#128;&#228;&#189;&#147;&#239;&#188;&#137;
  </option>
<option value="ja">
  &#230;&#151;&#165;&#230;&#156;&#172;&#232;&#170;&#158;
  </option>
<option value="ko">
  &#237;&#149;&#156;&#234;&#181;&#173;&#236;&#150;&#180;
  </option></select><noscript>
  <input class="gaia_lce_submit" type="submit" value="Change">
</noscript>
  <input type="hidden" name="timeStmp" id="timeStmp" value=""><input type="hidden" name="secTok" id="secTok" value="">
</form>




<form id="createaccount" name="createaccount" action="https://www.google.com/accounts/CreateAccount?service=mail&amp;continue=http%3A%2F%2Fmail.google.com%2Fmail%2Fe-11-2dbc28e240ea30b136df0a1112b85e-47965d1ced79eec4c8289f321c90a286e20bf7be&amp;type=2" method="post" >
  <input type="hidden" name="type" id="type" value="2"><input type="hidden" name="dsh" id="dsh" value="-3886667575044441698"><input type="hidden" name="ktl" id="ktl" value=""><input type="hidden" name="ktf" id="ktf" value=""><table cellpadding="2" bgcolor="white" cellspacing="0" border="0" width="1%"><tr><td>
  <table bgcolor="#cbdced" border="0" cellpadding="2" cellspacing="0" width="1%"><tr>
<td>
  <table bgcolor="#eeeeee" border="0" cellpadding="2" cellspacing="0" width="100%"><tr><td bgcolor="#ffffff" valign="top" align="center">
  <table cellspacing="0" cellpadding="5" width="100%" bgcolor="#ffffff" border="0">
<tr>
<td colspan="2" valign="top">
  <span class="gaia ops gsl">
  Get started with Gmail
  <br></span>
  </td>
  </tr>
<tr id="AttrRowFirstName" style="display: table-row">
<td nowrap valign="top" id="AttrLabelCellFirstName">
  <span class="gaia cca al">
  First name:
  </span>
  </td>
  <td id="AttrLabelCellFirstName">
  <div>
  <input type="text" name="FirstName" id="FirstName" size="30" value="">
</div>
  </td>
  </tr>
<tr id="AttrRowLastName" style="display: table-row">
<td nowrap valign="top" id="AttrLabelCellLastName">
  <span class="gaia cca al">
  Last name:
  </span>
  </td>
  <td id="AttrLabelCellLastName">
  <div>
  <input type="text" name="LastName" id="LastName" size="30" value="">
</div>
  </td>
  </tr>
<tr>
<td valign="top" nowrap>
  <font size="-1" face="Arial, sans-serif"><b>
  Desired Login Name:
  </b></font>
  <b>&#160;</b>
  </td>
  <td nowrap>
  <table border="0" dir="ltr"><tr>
<td dir="ltr">
  <select name="UsernameSelector" id="UsernameSelector" style="display:none;"><option value="header" style="font-style:italic;">
  Choose a username
  </option>
<option value="enterNew" style="font-style:italic;">
  Enter a new username
  </option></select><bdo dir="ltr">
  <div>
  <div id="googleIdTextfield" style="display:block">
  <input type="text" name="Email" id="Email" size="30" value="">
</div>
  </div>
  </bdo>
  <div id="googleIdExampleTextDiv" style="display:block;" align="left">
  <font size="-1" face="Arial, sans-serif" color="#6f6f6f">
  Examples: JSmith, John.Smith
  </font>
  </div>
  <div id="googleIdCheckAvailDiv" style="display:none;">
<div id="errorDIV">
  <font size="-1" face="Arial, sans-serif">
  <br><table cellpadding="0" cellspacing="0"><tr><td>
  </td></tr></table></font>
</div>
<div id="checkavailbuttondiv" style="display:none;">
  <div>
  <input type="button" key="checkavail" style="font-size:9pt" value="check availability!">
</div>
</div>
<div id="suggestionsDIV">
  <br><font size="-1" face="Arial, sans-serif">
  </font>
</div>

</div>
  <noscript>
  </noscript>
  </td>
  <td valign="top" nowrap>
  <bdo dir="ltr">
  <font size="-1" face="Arial, sans-serif">
  <i>@gmail.com</i>
  </font>
  </bdo>
  <input type="hidden" id="edk" name="edk" value="gmail.com">
</td>
  </tr></table>
</td>
</tr>
<tr>
<td valign="top" width="1%" nowrap>
  <font size="-1" face="Arial, sans-serif"><b>
  Choose a password:
  &#160;&#160;</b></font>
  </td>
  <td valign="top">
  <table cellpadding="0" bgcolor="#ffffff" cellspacing="0" border="0"><tbody><tr>
<td valign="top">
  <div>
  <input type="password" name="Passwd" id="Passwd" size="30" >
</div>
  <font size="-1" face="arial,sans-serif" color="#6f6f6f">
  Minimum of 8 characters in length.
  </font>
  </td>
<td width="10px"></td>
  <td nowrap valign="top" id="passwdBarDiv" style="display:none" width="180">
  <table border="0" cellpadding="0" cellspacing="0">
<tr>
<td nowrap valign="top" width="0">
  <font size="-1" face="Arial, sans-serif">
  <a  tabindex="-1">
  Password strength:</a>
  </font>
  </td>
  <td nowrap valign="top">
  <font size="-1" face="Arial, sans-serif" color="#808080"><b>
  <div id="passwdRating"></div>
  </b></font>
  </td>
  </tr>
<tr>
<td height="3"></td>
  </tr>
<tr>
<td colspan="2">
  <table id="passwdBar" bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0" width="180"><tr>
<td height="4" bgcolor="#e0e0e0" width="0%" id="posBar"></td>
  <td height="4" bgcolor="#e0e0e0" width="100%" id="negBar"></td>
  </tr></table>
</td>
  </tr>
</table>
</td>

</tr></tbody></table>
</td>
  </tr>
<tr>
<td valign="top" nowrap>
  <font size="-1" face="Arial, sans-serif"><b>
  Re-enter password:
  </b>
  </font>
  </td>
  <td>
  <div>
  <input type="password" name="PasswdAgain" id="PasswdAgain" size="30">
</div>
  </td>
  </tr>
<tr>
<td nowrap>&#160;</td>
  <td align="left">
  <font size="-1">
  <input type="checkbox" name="PersistentCookie" id="PersistentCookie" value="yes" checked>
&#160;<input type="hidden" name="rmShown" value="1">Stay signed in
  </font>
  </td>
  </tr>
<tr>
<td nowrap>&#160;</td>
  <td align="left">
  <input type="checkbox" value="1" name="smhck" id="smhck" checked><input type="hidden" value="1" id="nshk" name="nshk"><font size="-1" face="Arial, sans-serif">
  Enable Web History
  <a href="http://www.google.com/support/accounts/bin/answer.py?answer=54068&amp;hl=en" target="_blank">Learn More</a>
  </font>
  </td>
</tr>
<tr>
<td colspan="2">&#160;</td>
  </tr>
<tr id="AttrRowSecretQuestion" style="display: table-row">
<td nowrap valign="top" id="AttrLabelCellSecretQuestion">
  <span class="gaia cca al">
  Security question:
  </span>
  </td>
  <td id="AttrLabelCellSecretQuestion">
  <div>
<select id="questions" name="selection" ><option value="choosequestion" style="font-style:italic;">
  Choose a question ...
  </option>
<option value="What is the name of your best friend from childhood?">What is the name of your best friend from childhood?</option>
<option value="What was the name of your first teacher?">What was the name of your first teacher?</option>
<option value="What is the name of your manager at your first job?">What is the name of your manager at your first job?</option>
<option value="What was your first phone number?">What was your first phone number?</option>
<option value="What is your vehicle registration number?">What is your vehicle registration number?</option>
<option value="What is your library card number?">What is your library card number?</option>
</select><div style="{padding-top:5px;}">
  <input type="text" name="ownquestion" id="ownquestion" size="53" value="" style="display:none;">
</div>

</div>
  <span class="gaia cca cmt">
  If you forget your password we will ask for the answer to your security question.
  <a >
  Learn More
  </a>
  </span>
  </td>
  </tr>
<tr id="AttrRowIdentityAnswer" style="display: table-row">
<td nowrap valign="top" id="AttrLabelCellIdentityAnswer">
  <span class="gaia cca al">
  Answer:
  </span>
  </td>
  <td id="AttrLabelCellIdentityAnswer">
  <div>
  <input type="text" name="IdentityAnswer" id="IdentityAnswer" size="53" value="" autocomplete="off">
</div>
  </td>
  </tr>
<tr id="AttrRowSecondaryEmail" style="display: table-row">
<td nowrap valign="top" id="AttrLabelCellSecondaryEmail">
  <span class="gaia cca al">
  Recovery email:
  </span>
  </td>
  <td id="AttrLabelCellSecondaryEmail">
  <div>
  <input type="text" name="SecondaryEmail" id="SecondaryEmail" size="30" value="">
</div>
  <span class="gaia cca cmt">
  This address is used to authenticate your account should you ever encounter problems or forget your password. If you do not have another email address, you may leave this field blank.
  <a >
  Learn More
  </a>
  </span>
  </td>
  </tr>
<tr>
<td nowrap valign="top">
  <font size="-1" face="Arial, sans-serif">
  <b>Location:</b>
  </font>
  </td>
  <td>
<noscript>
  <input type="hidden" name="hl" value="en">
</noscript>
  <select id="loc" name="loc" ><option value="AF">
  Afghanistan (&#216;&#167;&#217;&#129;&#216;&#186;&#216;&#167;&#217;&#134;&#216;&#179;&#216;&#170;&#216;&#167;&#217;&#134;)
  </option>
<option value="AX">
  Aland Islands
  </option>
<option value="AL">
  Albania (Shqip&#195;&#171;ria)
  </option>
<option value="DZ">
  Algeria (&#216;&#167;&#217;&#132;&#216;&#172;&#216;&#178;&#216;&#167;&#216;&#166;&#216;&#177;)
  </option>
<option value="AS">
  American Samoa
  </option>
<option value="AD">
  Andorra
  </option>
<option value="AO">
  Angola
  </option>
<option value="AI">
  Anguilla
  </option>
<option value="AQ">
  Antarctica
  </option>
<option value="AG">
  Antigua and Barbuda
  </option>
<option value="AR">
  Argentina
  </option>
<option value="AM">
  Armenia (&#213;&#128;&#213;&#161;&#213;&#181;&#213;&#161;&#213;&#189;&#213;&#191;&#213;&#161;&#213;&#182;)
  </option>
<option value="AW">
  Aruba
  </option>
<option value="AU">
  Australia
  </option>
<option value="AT">
  Austria (&#195;&#150;sterreich)
  </option>
<option value="AZ">
  Azerbaijan (Az&#201;&#153;rbaycan)
  </option>
<option value="BS">
  Bahamas
  </option>
<option value="BH">
  Bahrain (&#216;&#167;&#217;&#132;&#216;&#168;&#216;&#173;&#216;&#177;&#217;&#138;&#217;&#134;)
  </option>
<option value="BD">
  Bangladesh (&#224;&#166;&#172;&#224;&#166;&#190;&#224;&#166;&#130;&#224;&#166;&#178;&#224;&#166;&#190;&#224;&#166;&#166;&#224;&#167;&#135;&#224;&#166;&#182;)
  </option>
<option value="BB">
  Barbados
  </option>
<option value="BY">
  Belarus (&#208;&#145;&#208;&#181;&#208;&#187;&#208;&#176;&#209;&#128;&#209;&#131;&#204;&#129;&#209;&#129;&#209;&#140;)
  </option>
<option value="BE">
  Belgium (Belgi&#195;&#171;)
  </option>
<option value="BZ">
  Belize
  </option>
<option value="BJ">
  Benin (B&#195;&#169;nin)
  </option>
<option value="BM">
  Bermuda
  </option>
<option value="BT">
  Bhutan (&#224;&#189;&#160;&#224;&#189;&#150;&#224;&#190;&#178;&#224;&#189;&#180;&#224;&#189;&#130;&#224;&#188;&#139;&#224;&#189;&#161;&#224;&#189;&#180;&#224;&#189;&#163;)
  </option>
<option value="BO">
  Bolivia
  </option>
<option value="BA">
  Bosnia and Herzegovina (Bosna i Hercegovina)
  </option>
<option value="BW">
  Botswana
  </option>
<option value="BV">
  Bouvet Island
  </option>
<option value="BR">
  Brazil (Brasil)
  </option>
<option value="IO">
  British Indian Ocean Territory
  </option>
<option value="BN">
  Brunei (Brunei Darussalam)
  </option>
<option value="BG">
  Bulgaria (&#208;&#145;&#209;&#138;&#208;&#187;&#208;&#179;&#208;&#176;&#209;&#128;&#208;&#184;&#209;&#143;)
  </option>
<option value="BF">
  Burkina Faso
  </option>
<option value="BI">
  Burundi (Uburundi)
  </option>
<option value="KH">
  Cambodia (Kampuchea)
  </option>
<option value="CM">
  Cameroon (Cameroun)
  </option>
<option value="CA">
  Canada
  </option>
<option value="CV">
  Cape Verde (Cabo Verde)
  </option>
<option value="KY">
  Cayman Islands
  </option>
<option value="CF">
  Central African Republic (R&#195;&#169;publique Centrafricaine)
  </option>
<option value="TD">
  Chad (Tchad)
  </option>
<option value="CL">
  Chile
  </option>
<option value="CN">
  China (&#228;&#184;&#173;&#229;&#155;&#189;)
  </option>
<option value="CX">
  Christmas Island
  </option>
<option value="CC">
  Cocos Islands
  </option>
<option value="CO">
  Colombia
  </option>
<option value="KM">
  Comoros (Comores)
  </option>
<option value="CG">
  Congo
  </option>
<option value="CD">
  Congo, Democratic Republic of the
  </option>
<option value="CK">
  Cook Islands
  </option>
<option value="CR">
  Costa Rica
  </option>
<option value="CI">
  C&#195;&#180;te d'Ivoire
  </option>
<option value="HR">
  Croatia (Hrvatska)
  </option>
<option value="CU">
  Cuba
  </option>
<option value="CY">
  Cyprus (&#206;&#154;&#207;&#133;&#207;&#128;&#207;&#129;&#206;&#191;&#207;&#130;)
  </option>
<option value="CZ">
  Czech Republic (&#196;&#140;esko)
  </option>
<option value="DK">
  Denmark (Danmark)
  </option>
<option value="DJ">
  Djibouti
  </option>
<option value="DM">
  Dominica
  </option>
<option value="DO">
  Dominican Republic
  </option>
<option value="EC">
  Ecuador
  </option>
<option value="EG">
  Egypt (&#217;&#133;&#216;&#181;&#216;&#177;)
  </option>
<option value="SV">
  El Salvador
  </option>
<option value="GQ">
  Equatorial Guinea (Guinea Ecuatorial)
  </option>
<option value="ER">
  Eritrea (Ertra)
  </option>
<option value="EE">
  Estonia (Eesti)
  </option>
<option value="ET">
  Ethiopia (Ityop'iya)
  </option>
<option value="FK">
  Falkland Islands
  </option>
<option value="FO">
  Faroe Islands
  </option>
<option value="FJ">
  Fiji
  </option>
<option value="FI">
  Finland (Suomi)
  </option>
<option value="FR">
  France
  </option>
<option value="GF">
  French Guiana
  </option>
<option value="PF">
  French Polynesia
  </option>
<option value="TF">
  French Southern Territories
  </option>
<option value="GA">
  Gabon
  </option>
<option value="GM">
  Gambia
  </option>
<option value="GE">
  Georgia (&#225;&#131;&#161;&#225;&#131;&#144;&#225;&#131;&#165;&#225;&#131;&#144;&#225;&#131;&#160;&#225;&#131;&#151;&#225;&#131;&#149;&#225;&#131;&#148;&#225;&#131;&#154;&#225;&#131;&#157;)
  </option>
<option value="DE">
  Germany (Deutschland)
  </option>
<option value="GH">
  Ghana
  </option>
<option value="GI">
  Gibraltar
  </option>
<option value="GR">
  Greece (&#206;&#149;&#206;&#187;&#206;&#187;&#206;&#172;&#207;&#130;)
  </option>
<option value="GL">
  Greenland
  </option>
<option value="GD">
  Grenada
  </option>
<option value="GP">
  Guadeloupe
  </option>
<option value="GU">
  Guam
  </option>
<option value="GT">
  Guatemala
  </option>
<option value="GG">
  Guernsey
  </option>
<option value="GN">
  Guinea (Guin&#195;&#169;e)
  </option>
<option value="GW">
  Guinea-Bissau (Guin&#195;&#169;-Bissau)
  </option>
<option value="GY">
  Guyana
  </option>
<option value="HT">
  Haiti (Ha&#195;&#175;ti)
  </option>
<option value="HM">
  Heard Island and McDonald Islands
  </option>
<option value="HN">
  Honduras
  </option>
<option value="HK">
  Hong Kong
  </option>
<option value="HU">
  Hungary (Magyarorsz&#195;&#161;g)
  </option>
<option value="IS">
  Iceland (&#195;&#141;sland)
  </option>
<option value="IN">
  India
  </option>
<option value="ID">
  Indonesia
  </option>
<option value="IR">
  Iran (&#216;&#167;&#219;&#140;&#216;&#177;&#216;&#167;&#217;&#134;)
  </option>
<option value="IQ">
  Iraq (&#216;&#167;&#217;&#132;&#216;&#185;&#216;&#177;&#216;&#167;&#217;&#130;)
  </option>
<option value="IE">
  Ireland
  </option>
<option value="IM">
  Isle of Man
  </option>
<option value="IL">
  Israel (&#215;&#153;&#215;&#169;&#215;&#168;&#215;&#144;&#215;&#156;)
  </option>
<option value="IT">
  Italy (Italia)
  </option>
<option value="JM">
  Jamaica
  </option>
<option value="JP">
  Japan (&#230;&#151;&#165;&#230;&#156;&#172;)
  </option>
<option value="JE">
  Jersey
  </option>
<option value="JO">
  Jordan (&#216;&#167;&#217;&#132;&#216;&#167;&#216;&#177;&#216;&#175;&#217;&#134;)
  </option>
<option value="KZ">
  Kazakhstan (&#210;&#154;&#208;&#176;&#208;&#183;&#208;&#176;&#210;&#155;&#209;&#129;&#209;&#130;&#208;&#176;&#208;&#189;)
  </option>
<option value="KE">
  Kenya
  </option>
<option value="KI">
  Kiribati
  </option>
<option value="KW">
  Kuwait (&#216;&#167;&#217;&#132;&#217;&#131;&#217;&#136;&#217;&#138;&#216;&#170;)
  </option>
<option value="KG">
  Kyrgyzstan (&#208;&#154;&#209;&#139;&#209;&#128;&#208;&#179;&#209;&#139;&#208;&#183;&#209;&#129;&#209;&#130;&#208;&#176;&#208;&#189;)
  </option>
<option value="LA">
  Laos (&#224;&#186;&#153;&#224;&#186;&#165;&#224;&#186;&#178;&#224;&#186;&#167;)
  </option>
<option value="LV">
  Latvia (Latvija)
  </option>
<option value="LB">
  Lebanon (&#217;&#132;&#216;&#168;&#217;&#134;&#216;&#167;&#217;&#134;)
  </option>
<option value="LS">
  Lesotho
  </option>
<option value="LR">
  Liberia
  </option>
<option value="LY">
  Libya (&#217;&#132;&#217;&#138;&#216;&#168;&#217;&#138;&#216;&#167;)
  </option>
<option value="LI">
  Liechtenstein
  </option>
<option value="LT">
  Lithuania (Lietuva)
  </option>
<option value="LU">
  Luxembourg (L&#195;&#171;tzebuerg)
  </option>
<option value="MO">
  Macao
  </option>
<option value="MK">
  Macedonia (&#208;&#156;&#208;&#176;&#208;&#186;&#208;&#181;&#208;&#180;&#208;&#190;&#208;&#189;&#208;&#184;&#209;&#152;&#208;&#176;)
  </option>
<option value="MG">
  Madagascar (Madagasikara)
  </option>
<option value="MW">
  Malawi
  </option>
<option value="MY">
  Malaysia
  </option>
<option value="MV">
  Maldives (&#222;&#142;&#222;&#170;&#222;&#150;&#222;&#173;&#222;&#135;&#222;&#176;&#222;&#131;&#222;&#167; &#222;&#148;&#222;&#167;&#222;&#135;&#222;&#176;&#222;&#131;&#222;&#168;&#222;&#128;&#222;&#171;&#222;&#137;&#222;&#176;&#222;&#150;)
  </option>
<option value="ML">
  Mali
  </option>
<option value="MT">
  Malta
  </option>
<option value="MH">
  Marshall Islands
  </option>
<option value="MQ">
  Martinique
  </option>
<option value="MR">
  Mauritania (&#217;&#133;&#217;&#136;&#216;&#177;&#217;&#138;&#216;&#170;&#216;&#167;&#217;&#134;&#217;&#138;&#216;&#167;)
  </option>
<option value="MU">
  Mauritius
  </option>
<option value="YT">
  Mayotte
  </option>
<option value="MX">
  Mexico (M&#195;&#169;xico)
  </option>
<option value="FM">
  Micronesia
  </option>
<option value="MD">
  Moldova
  </option>
<option value="MC">
  Monaco
  </option>
<option value="MN">
  Mongolia (&#208;&#156;&#208;&#190;&#208;&#189;&#208;&#179;&#208;&#190;&#208;&#187; &#208;&#163;&#208;&#187;&#209;&#129;)
  </option>
<option value="ME">
  Montenegro (&#208;&#166;&#209;&#128;&#208;&#189;&#208;&#176; &#208;&#147;&#208;&#190;&#209;&#128;&#208;&#176;)
  </option>
<option value="MS">
  Montserrat
  </option>
<option value="MA">
  Morocco (&#216;&#167;&#217;&#132;&#217;&#133;&#216;&#186;&#216;&#177;&#216;&#168;)
  </option>
<option value="MZ">
  Mozambique (Mo&#195;&#167;ambique)
  </option>
<option value="MM">
  Myanmar (Burma)
  </option>
<option value="NA">
  Namibia
  </option>
<option value="NR">
  Nauru (Naoero)
  </option>
<option value="NP">
  Nepal (&#224;&#164;&#168;&#224;&#165;&#135;&#224;&#164;&#170;&#224;&#164;&#190;&#224;&#164;&#178;)
  </option>
<option value="NL">
  Netherlands (Nederland)
  </option>
<option value="AN">
  Netherlands Antilles
  </option>
<option value="NC">
  New Caledonia
  </option>
<option value="NZ">
  New Zealand
  </option>
<option value="NI">
  Nicaragua
  </option>
<option value="NE">
  Niger
  </option>
<option value="NG">
  Nigeria
  </option>
<option value="NU">
  Niue
  </option>
<option value="NF">
  Norfolk Island
  </option>
<option value="MP">
  Northern Mariana Islands
  </option>
<option value="KP">
  North Korea (&#236;&#161;&#176;&#236;&#132;&#160;)
  </option>
<option value="NO">
  Norway (Norge)
  </option>
<option value="OM">
  Oman (&#216;&#185;&#217;&#133;&#216;&#167;&#217;&#134;)
  </option>
<option value="PK">
  Pakistan (&#217;&#190;&#216;&#167;&#218;&#169;&#216;&#179;&#216;&#170;&#216;&#167;&#217;&#134;)
  </option>
<option value="PW">
  Palau (Belau)
  </option>
<option value="PS">
  Palestinian Territories
  </option>
<option value="PA">
  Panama (Panam&#195;&#161;)
  </option>
<option value="PG">
  Papua New Guinea
  </option>
<option value="PY">
  Paraguay
  </option>
<option value="PE">
  Peru (Per&#195;&#186;)
  </option>
<option value="PH">
  Philippines (Pilipinas)
  </option>
<option value="PN">
  Pitcairn
  </option>
<option value="PL">
  Poland (Polska)
  </option>
<option value="PT">
  Portugal
  </option>
<option value="PR">
  Puerto Rico
  </option>
<option value="QA">
  Qatar (&#217;&#130;&#216;&#183;&#216;&#177;)
  </option>
<option value="RE">
  Reunion
  </option>
<option value="RO">
  Romania (Rom&#195;&#162;nia)
  </option>
<option value="RU">
  Russia (&#208;&#160;&#208;&#190;&#209;&#129;&#209;&#129;&#208;&#184;&#209;&#143;)
  </option>
<option value="RW">
  Rwanda
  </option>
<option value="SH">
  Saint Helena
  </option>
<option value="KN">
  Saint Kitts and Nevis
  </option>
<option value="LC">
  Saint Lucia
  </option>
<option value="PM">
  Saint Pierre and Miquelon
  </option>
<option value="VC">
  Saint Vincent and the Grenadines
  </option>
<option value="WS">
  Samoa
  </option>
<option value="SM">
  San Marino
  </option>
<option value="ST">
  S&#195;&#163;o Tom&#195;&#169; and Pr&#195;&#173;ncipe
  </option>
<option value="SA">
  Saudi Arabia (&#216;&#167;&#217;&#132;&#217;&#133;&#217;&#133;&#217;&#132;&#217;&#131;&#216;&#169; &#216;&#167;&#217;&#132;&#216;&#185;&#216;&#177;&#216;&#168;&#217;&#138;&#216;&#169; &#216;&#167;&#217;&#132;&#216;&#179;&#216;&#185;&#217;&#136;&#216;&#175;&#217;&#138;&#216;&#169;)
  </option>
<option value="SN">
  Senegal (S&#195;&#169;n&#195;&#169;gal)
  </option>
<option value="RS">
  Serbia (&#208;&#161;&#209;&#128;&#208;&#177;&#208;&#184;&#209;&#152;&#208;&#176;)
  </option>
<option value="CS">
  Serbia and Montenegro (&#208;&#161;&#209;&#128;&#208;&#177;&#208;&#184;&#209;&#152;&#208;&#176; &#208;&#184; &#208;&#166;&#209;&#128;&#208;&#189;&#208;&#176; &#208;&#147;&#208;&#190;&#209;&#128;&#208;&#176;)
  </option>
<option value="SC">
  Seychelles
  </option>
<option value="SL">
  Sierra Leone
  </option>
<option value="SG">
  Singapore (Singapura)
  </option>
<option value="SK">
  Slovakia (Slovensko)
  </option>
<option value="SI">
  Slovenia (Slovenija)
  </option>
<option value="SB">
  Solomon Islands
  </option>
<option value="SO">
  Somalia (Soomaaliya)
  </option>
<option value="ZA">
  South Africa
  </option>
<option value="GS">
  South Georgia and the South Sandwich Islands
  </option>
<option value="KR">
  South Korea (&#237;&#149;&#156;&#234;&#181;&#173;)
  </option>
<option value="ES">
  Spain (Espa&#195;&#177;a)
  </option>
<option value="LK">
  Sri Lanka
  </option>
<option value="SD">
  Sudan (&#216;&#167;&#217;&#132;&#216;&#179;&#217;&#136;&#216;&#175;&#216;&#167;&#217;&#134;)
  </option>
<option value="SR">
  Suriname
  </option>
<option value="SJ">
  Svalbard and Jan Mayen
  </option>
<option value="SZ">
  Swaziland
  </option>
<option value="SE">
  Sweden (Sverige)
  </option>
<option value="CH">
  Switzerland (Schweiz)
  </option>
<option value="SY">
  Syria (&#216;&#179;&#217;&#136;&#216;&#177;&#217;&#138;&#216;&#167;)
  </option>
<option value="TW">
  Taiwan (&#229;&#143;&#176;&#231;&#129;&#163;)
  </option>
<option value="TJ">
  Tajikistan (&#208;&#162;&#208;&#190;&#210;&#183;&#208;&#184;&#208;&#186;&#208;&#184;&#209;&#129;&#209;&#130;&#208;&#190;&#208;&#189;)
  </option>
<option value="TZ">
  Tanzania
  </option>
<option value="TH">
  Thailand (&#224;&#184;&#163;&#224;&#184;&#178;&#224;&#184;&#138;&#224;&#184;&#173;&#224;&#184;&#178;&#224;&#184;&#147;&#224;&#184;&#178;&#224;&#184;&#136;&#224;&#184;&#177;&#224;&#184;&#129;&#224;&#184;&#163;&#224;&#185;&#132;&#224;&#184;&#151;&#224;&#184;&#162;)
  </option>
<option value="TL">
  Timor-Leste
  </option>
<option value="TG">
  Togo
  </option>
<option value="TK">
  Tokelau
  </option>
<option value="TO">
  Tonga
  </option>
<option value="TT">
  Trinidad and Tobago
  </option>
<option value="TN">
  Tunisia (&#216;&#170;&#217;&#136;&#217;&#134;&#216;&#179;)
  </option>
<option value="TR">
  Turkey (T&#195;&#188;rkiye)
  </option>
<option value="TM">
  Turkmenistan (T&#195;&#188;rkmenistan)
  </option>
<option value="TC">
  Turks and Caicos Islands
  </option>
<option value="TV">
  Tuvalu
  </option>
<option value="UG">
  Uganda
  </option>
<option value="UA">
  Ukraine (&#208;&#163;&#208;&#186;&#209;&#128;&#208;&#176;&#209;&#151;&#208;&#189;&#208;&#176;)
  </option>
<option value="AE">
  United Arab Emirates (&#216;&#167;&#217;&#132;&#216;&#165;&#217;&#133;&#216;&#167;&#216;&#177;&#216;&#167;&#216;&#170; &#216;&#167;&#217;&#132;&#216;&#185;&#216;&#177;&#216;&#168;&#217;&#138;&#217;&#145;&#216;&#169; &#216;&#167;&#217;&#132;&#217;&#133;&#216;&#170;&#217;&#145;&#216;&#173;&#216;&#175;&#216;&#169;)
  </option>
<option value="GB">
  United Kingdom
  </option>
<option value="US" selected>
  United States
  </option>
<option value="UM">
  United States minor outlying islands
  </option>
<option value="UY">
  Uruguay
  </option>
<option value="UZ">
  Uzbekistan (O'zbekiston)
  </option>
<option value="VU">
  Vanuatu
  </option>
<option value="VA">
  Vatican City (Citt&#195;&#160; del Vaticano)
  </option>
<option value="VE">
  Venezuela
  </option>
<option value="VN">
  Vietnam (Vi&#225;&#187;&#135;t Nam)
  </option>
<option value="VG">
  Virgin Islands, British
  </option>
<option value="VI">
  Virgin Islands, U.S.
  </option>
<option value="WF">
  Wallis and Futuna
  </option>
<option value="EH">
  Western Sahara (&#216;&#167;&#217;&#132;&#216;&#181;&#216;&#173;&#216;&#177;&#216;&#167;&#216;&#161; &#216;&#167;&#217;&#132;&#216;&#186;&#216;&#177;&#216;&#168;&#217;&#138;&#216;&#169;)
  </option>
<option value="YE">
  Yemen (&#216;&#167;&#217;&#132;&#217;&#138;&#217;&#133;&#217;&#134;)
  </option>
<option value="ZM">
  Zambia
  </option>
<option value="ZW">
  Zimbabwe
  </option></select><noscript>
  <input type="submit" name="default_submit" id="default_submit" style="display:none"><input type="submit" name="change_location" id="change_location" style="display:inline" value="Change">
</noscript>
  </td>
</tr>
<tr id="AttrRowBirthday" style="display: table-row">
<td nowrap valign="top" id="AttrLabelCellBirthday">
  <span class="gaia cca al">
  Birthday:
  </span>
  </td>
  <td id="AttrLabelCellBirthday">
  <div>
  <input type="text" name="Birthday" id="Birthday" size="30" value="">
</div>
  <span class="gaia cca cmt">
  MM/DD/YYYY (e.g. "6/6/2011")
  </span>
  </td>
  </tr>
<tr>
<td valign="top">
  <span class="gaia cud cl">
  Word Verification:
  </span>
  </td>
  <td>
  <table>
<input type="hidden" name="newaccounttoken" id="newaccounttoken" value="O-XLHLq-2XQCfAYrGACAVmvZaX28UZ9MpE8HjKCK9HyI_Y32Fq-YX72-g1dFymm8ZdW-hBXf5JDkzcbiTrm5bg:VJqoHuV9HXq_7cAiXLfhkw"><input type="hidden" name="newaccounturl" id="newaccounturl" value="https://www.google.com/accounts/Captcha?ctoken=O-XLHLq-2XQCfAYrGACAVmvZaX28UZ9MpE8HjKCK9HyI_Y32Fq-YX72-g1dFymm8ZdW-hBXf5JDkzcbiTrm5bg%3AVJqoHuV9HXq_7cAiXLfhkw"><tr>
<td valign="top">
  </td>
  <td valign="top">
  <span class="gaia captchahtml desc">
  Type the characters you see in the picture below.
  </span>
  <div>
  <img src="#" width="200" height="70" alt="Visual verification">
</div>
  <input type="hidden" name="newaccounttoken_audio" id="newaccounttoken_audio" value="w_k-VT3CPgu_wWLPFVpTSgtjJX6ddAa-B9gmvFojyGBp_80fpvGc0IMP1zabdH1qd9g4kFAvFJC1gtNiBWIk1A:aLUA6gyZVfUmakt6Seh5VA"><input type="hidden" name="newaccounturl_audio" id="newaccounturl_audio" value="https://www.google.com/accounts/Captcha?ctoken=w_k-VT3CPgu_wWLPFVpTSgtjJX6ddAa-B9gmvFojyGBp_80fpvGc0IMP1zabdH1qd9g4kFAvFJC1gtNiBWIk1A%3AaLUA6gyZVfUmakt6Seh5VA"><div id="snd1"></div>
  <div id="noEm"></div>
  <div id="playAudio"></div>
  </td>
</tr>
<tr>
<td></td>
  <td>
  <div>
  <input type="text" size="22" id="newaccountcaptcha" name="newaccountcaptcha" value="" title="Type the characters you see or numbers you hear"><noscript>
  <a href="https://www.google.com/accounts/Captcha?ctoken=w_k-VT3CPgu_wWLPFVpTSgtjJX6ddAa-B9gmvFojyGBp_80fpvGc0IMP1zabdH1qd9g4kFAvFJC1gtNiBWIk1A%3AaLUA6gyZVfUmakt6Seh5VA" target="_blank">
  <img src="#" border="0" style="width: 1em; height: 1.2em;" align="absmiddle" alt="Listen and type the numbers you hear"></a>
  </noscript>
  <a href="http://www.google.com/support/accounts/bin/answer.py?answer=33974" target="_top">
  <img border="0" height="1" width="1" alt="For more help with screen readers, click here."></a>
  </div>
  <span class="gaia captchahtml cmt">
  Letters are not case-sensitive
  </span>
 </td>
</tr>

</table>
</td>
</tr>
<!-- Tos.naui=default --><tr>
<td valign="top" nowrap>
  <font size="-1" face="Arial, sans-serif">
  <b>Terms of Service:</b>
  </font>
  </td>
  <td valign="top">
  <font size="-1" face="Arial, sans-serif">
  Please check the Google Account information you've entered above (feel free to change anything you like), and review the Terms of Service below.
  <br><br>
  With Gmail, you won't see
blinking banner ads. Instead, we display ads you might find useful that are
relevant to the content of your messages.
  <a href="http://mail.google.com/support/bin/answer.py?hl=en&amp;answer=6603">
  Learn more
  </a>
  </font>
  </td>
  </tr>
<tr>
<td>&#160;</td>
  <td valign="top">
  <div>
  <div style="display:inline" id="tos_div">
<table border="0" cellpadding="0" cellspacing="0">
<tr><td align="right" valign="top">
  <font size="-1">
  <a href="TOS?loc=US&amp;hl=en" target="_blank">Printable Version</a>
  </font>
</td></tr>
<tr><td>
  <textarea rows="5" cols="80" style="width:100%;text-align:" readonly >&#239;&#187;&#191;Google Terms of Service

Welcome to Google!

1. Your relationship with Google

    1.1 Your use of Google&#226;&#128;&#153;s products, software, services and web sites (referred to collectively as the &#226;&#128;&#156;Services&#226;&#128;&#157; in this document and excluding any services provided to you by Google under a separate written agreement) is subject to the terms of a legal agreement between you and Google. &#226;&#128;&#156;Google&#226;&#128;&#157; means Google Inc., whose principal place of business is at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States. This document explains how the agreement is made up, and sets out some of the terms of that agreement.

    1.2 Unless otherwise agreed in writing with Google, your agreement with Google will always include, at a minimum, the terms and conditions set out in this document. These are referred to below as the &#226;&#128;&#156;Universal Terms&#226;&#128;&#157;.

    1.3 Your agreement with Google will also include the terms of any Legal Notices applicable to the Services, in addition to the Universal Terms. All of these are referred to below as the &#226;&#128;&#156;Additional Terms&#226;&#128;&#157;. Where Additional Terms apply to a Service, these will be accessible for you to read either within, or through your use of, that Service.

    1.4 The Universal Terms, together with the Additional Terms, form a legally binding agreement between you and Google in relation to your use of the Services. It is important that you take the time to read them carefully. Collectively, this legal agreement is referred to below as the &#226;&#128;&#156;Terms&#226;&#128;&#157;.

    1.5 If there is any contradiction between what the Additional Terms say and what the Universal Terms say, then the Additional Terms shall take precedence in relation to that Service.

2. Accepting the Terms

    2.1 In order to use the Services, you must first agree to the Terms. You may not use the Services if you do not accept the Terms.

    2.2 You can accept the Terms by:

        (A) clicking to accept or agree to the Terms, where this option is made available to you by Google in the user interface for any Service; or

        (B) by actually using the Services. In this case, you understand and agree that Google will treat your use of the Services as acceptance of the Terms from that point onwards.

    2.3 You may not use the Services and may not accept the Terms if (a) you are not of legal age to form a binding contract with Google, or (b) you are a person barred from receiving the Services under the laws of the United States or other countries including the country in which you are resident or from which you use the Services.

    2.4 Before you continue, you should print off or save a local copy of the Universal Terms for your records.

3. Language of the Terms

    3.1 Where Google has provided you with a translation of the English language version of the Terms, then you agree that the translation is provided for your convenience only and that the English language versions of the Terms will govern your relationship with Google.

    3.2 If there is any contradiction between what the English language version of the Terms says and what a translation says, then the English language version shall take precedence.

4. Provision of the Services by Google

    4.1 Google has subsidiaries and affiliated legal entities around the world (&#226;&#128;&#156;Subsidiaries and Affiliates&#226;&#128;&#157;). Sometimes, these companies will be providing the Services to you on behalf of Google itself. You acknowledge and agree that Subsidiaries and Affiliates will be entitled to provide the Services to you.

    4.2 Google is constantly innovating in order to provide the best possible experience for its users. You acknowledge and agree that the form and nature of the Services which Google provides may change from time to time without prior notice to you.

    4.3 As part of this continuing innovation, you acknowledge and agree that Google may stop (permanently or temporarily) providing the Services (or any features within the Services) to you or to users generally at Google&#226;&#128;&#153;s sole discretion, without prior notice to you. You may stop using the Services at any time. You do not need to specifically inform Google when you stop using the Services.

    4.4 You acknowledge and agree that if Google disables access to your account, you may be prevented from accessing the Services, your account details or any files or other content which is contained in your account.

    4.5 You acknowledge and agree that while Google may not currently have set a fixed upper limit on the number of transmissions you may send or receive through the Services or on the amount of storage space used for the provision of any Service, such fixed upper limits may be set by Google at any time, at Google&#226;&#128;&#153;s discretion.

5. Use of the Services by you

    5.1 In order to access certain Services, you may be required to provide information about yourself (such as identification or contact details) as part of the registration process for the Service, or as part of your continued use of the Services. You agree that any registration information you give to Google will always be accurate, correct and up to date.

    5.2 You agree to use the Services only for purposes that are permitted by (a) the Terms and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).

    5.3 You agree not to access (or attempt to access) any of the Services by any means other than through the interface that is provided by Google, unless you have been specifically allowed to do so in a separate agreement with Google. You specifically agree not to access (or attempt to access) any of the Services through any automated means (including use of scripts or web crawlers) and shall ensure that you comply with the instructions set out in any robots.txt file present on the Services.

    5.4 You agree that you will not engage in any activity that interferes with or disrupts the Services (or the servers and networks which are connected to the Services).

    5.5 Unless you have been specifically permitted to do so in a separate agreement with Google, you agree that you will not reproduce, duplicate, copy, sell, trade or resell the Services for any purpose.

    5.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under the Terms and for the consequences (including any loss or damage which Google may suffer) of any such breach.

6. Your passwords and account security

    6.1 You agree and understand that you are responsible for maintaining the confidentiality of passwords associated with any account you use to access the Services.

    6.2 Accordingly, you agree that you will be solely responsible to Google for all activities that occur under your account.

    6.3 If you become aware of any unauthorized use of your password or of your account, you agree to notify Google immediately at http://www.google.com/support/accounts/bin/answer.py?answer=48601.

7. Privacy and your personal information

    7.1 For information about Google&#226;&#128;&#153;s data protection practices, please read Google&#226;&#128;&#153;s privacy policy at http://www.google.com/privacy.html. This policy explains how Google treats your personal information, and protects your privacy, when you use the Services.

    7.2 You agree to the use of your data in accordance with Google&#226;&#128;&#153;s privacy policies.

8. Content in the Services

    8.1 You understand that all information (such as data files, written text, computer software, music, audio files or other sounds, photographs, videos or other images) which you may have access to as part of, or through your use of, the Services are the sole responsibility of the person from which such content originated. All such information is referred to below as the &#226;&#128;&#156;Content&#226;&#128;&#157;.

    8.2 You should be aware that Content presented to you as part of the Services, including but not limited to advertisements in the Services and sponsored Content within the Services may be protected by intellectual property rights which are owned by the sponsors or advertisers who provide that Content to Google (or by other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this Content (either in whole or in part) unless you have been specifically told that you may do so by Google or by the owners of that Content, in a separate agreement.

    8.3 Google reserves the right (but shall have no obligation) to pre-screen, review, flag, filter, modify, refuse or remove any or all Content from any Service. For some of the Services, Google may provide tools to filter out explicit sexual content. These tools include the SafeSearch preference settings (see http://www.google.com/help/customize.html#safe). In addition, there are commercially available services and software to limit access to material that you may find objectionable.

    8.4 You understand that by using the Services you may be exposed to Content that you may find offensive, indecent or objectionable and that, in this respect, you use the Services at your own risk.

    8.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any Content that you create, transmit or display while using the Services and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.

9. Proprietary rights

    9.1 You acknowledge and agree that Google (or Google&#226;&#128;&#153;s licensors) own all legal right, title and interest in and to the Services, including any intellectual property rights which subsist in the Services (whether those rights happen to be registered or not, and wherever in the world those rights may exist). You further acknowledge that the Services may contain information which is designated confidential by Google and that you shall not disclose such information without Google&#226;&#128;&#153;s prior written consent.

    9.2 Unless you have agreed otherwise in writing with Google, nothing in the Terms gives you a right to use any of Google&#226;&#128;&#153;s trade names, trade marks, service marks, logos, domain names, and other distinctive brand features.

    9.3 If you have been given an explicit right to use any of these brand features in a separate written agreement with Google, then you agree that your use of such features shall be in compliance with that agreement, any applicable provisions of the Terms, and Google's brand feature use guidelines as updated from time to time. These guidelines can be viewed online at http://www.google.com/permissions/guidelines.html (or such other URL as Google may provide for this purpose from time to time).

    9.4 Other than the limited license set forth in Section 11, Google acknowledges and agrees that it obtains no right, title or interest from you (or your licensors) under these Terms in or to any Content that you submit, post, transmit or display on, or through, the Services, including any intellectual property rights which subsist in that Content (whether those rights happen to be registered or not, and wherever in the world those rights may exist). Unless you have agreed otherwise in writing with Google, you agree that you are responsible for protecting and enforcing those rights and that Google has no obligation to do so on your behalf.

    9.5 You agree that you shall not remove, obscure, or alter any proprietary rights notices (including copyright and trade mark notices) which may be affixed to or contained within the Services.

    9.6 Unless you have been expressly authorized to do so in writing by Google, you agree that in using the Services, you will not use any trade mark, service mark, trade name, logo of any company or organization in a way that is likely or intended to cause confusion about the owner or authorized user of such marks, names or logos.

10. License from Google

    10.1 Google gives you a personal, worldwide, royalty-free, non-assignable and non-exclusive license to use the software provided to you by Google as part of the Services as provided to you by Google (referred to as the &#226;&#128;&#156;Software&#226;&#128;&#157; below). This license is for the sole purpose of enabling you to use and enjoy the benefit of the Services as provided by Google, in the manner permitted by the Terms.

    10.2 You may not (and you may not permit anyone else to) copy, modify, create a derivative work of, reverse engineer, decompile or otherwise attempt to extract the source code of the Software or any part thereof, unless this is expressly permitted or required by law, or unless you have been specifically told that you may do so by Google, in writing.

    10.3 Unless Google has given you specific written permission to do so, you may not assign (or grant a sub-license of) your rights to use the Software, grant a security interest in or over your rights to use the Software, or otherwise transfer any part of your rights to use the Software.

11. Content license from you

    11.1 You retain copyright and any other rights you already hold in Content which you submit, post or display on or through, the Services. By submitting, posting or displaying the content you give Google a perpetual, irrevocable, worldwide, royalty-free, and non-exclusive license to reproduce, adapt, modify, translate, publish, publicly perform, publicly display and distribute any Content which you submit, post or display on or through, the Services. This license is for the sole purpose of enabling Google to display, distribute and promote the Services and may be revoked for certain Services as defined in the Additional Terms of those Services.

    11.2 You agree that this license includes a right for Google to make such Content available to other companies, organizations or individuals with whom Google has relationships for the provision of syndicated services, and to use such Content in connection with the provision of those services.

    11.3 You understand that Google, in performing the required technical steps to provide the Services to our users, may (a) transmit or distribute your Content over various public networks and in various media; and (b) make such changes to your Content as are necessary to conform and adapt that Content to the technical requirements of connecting networks, devices, services or media. You agree that this license shall permit Google to take these actions.

    11.4 You confirm and warrant to Google that you have all the rights, power and authority necessary to grant the above license.

12. Software updates

    12.1 The Software which you use may automatically download and install updates from time to time from Google. These updates are designed to improve, enhance and further develop the Services and may take the form of bug fixes, enhanced functions, new software modules and completely new versions. You agree to receive such updates (and permit Google to deliver these to you) as part of your use of the Services.

13. Ending your relationship with Google

    13.1 The Terms will continue to apply until terminated by either you or Google as set out below.

    13.2 If you want to terminate your legal agreement with Google, you may do so by (a) notifying Google at any time and (b) closing your accounts for all of the Services which you use, where Google has made this option available to you. Your notice should be sent, in writing, to Google&#226;&#128;&#153;s address which is set out at the beginning of these Terms.

    13.3 Google may at any time, terminate its legal agreement with you if:

        (A) you have breached any provision of the Terms (or have acted in manner which clearly shows that you do not intend to, or are unable to comply with the provisions of the Terms); or

        (B) Google is required to do so by law (for example, where the provision of the Services to you is, or becomes, unlawful); or

        (C) the partner with whom Google offered the Services to you has terminated its relationship with Google or ceased to offer the Services to you; or

        (D) Google is transitioning to no longer providing the Services to users in the country in which you are resident or from which you use the service; or

        (E) the provision of the Services to you by Google is, in Google&#226;&#128;&#153;s opinion, no longer commercially viable.

    13.4 Nothing in this Section shall affect Google&#226;&#128;&#153;s rights regarding provision of Services under Section 4 of the Terms.

    13.5 When these Terms come to an end, all of the legal rights, obligations and liabilities that you and Google have benefited from, been subject to (or which have accrued over time whilst the Terms have been in force) or which are expressed to continue indefinitely, shall be unaffected by this cessation, and the provisions of paragraph 20.7 shall continue to apply to such rights, obligations and liabilities indefinitely.

14. EXCLUSION OF WARRANTIES

    14.1 NOTHING IN THESE TERMS, INCLUDING SECTIONS 14 AND 15, SHALL EXCLUDE OR LIMIT GOOGLE&#226;&#128;&#153;S WARRANTY OR LIABILITY FOR LOSSES WHICH MAY NOT BE LAWFULLY EXCLUDED OR LIMITED BY APPLICABLE LAW. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF CERTAIN WARRANTIES OR CONDITIONS OR THE LIMITATION OR EXCLUSION OF LIABILITY FOR LOSS OR DAMAGE CAUSED BY NEGLIGENCE, BREACH OF CONTRACT OR BREACH OF IMPLIED TERMS, OR INCIDENTAL OR CONSEQUENTIAL DAMAGES. ACCORDINGLY, ONLY THE LIMITATIONS WHICH ARE LAWFUL IN YOUR JURISDICTION WILL APPLY TO YOU AND OUR LIABILITY WILL BE LIMITED TO THE MAXIMUM EXTENT PERMITTED BY LAW.

    14.2 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SERVICES IS AT YOUR SOLE RISK AND THAT THE SERVICES ARE PROVIDED "AS IS" AND &#226;&#128;&#156;AS AVAILABLE.&#226;&#128;&#157;

    14.3 IN PARTICULAR, GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS DO NOT REPRESENT OR WARRANT TO YOU THAT:

        (A) YOUR USE OF THE SERVICES WILL MEET YOUR REQUIREMENTS,

        (B) YOUR USE OF THE SERVICES WILL BE UNINTERRUPTED, TIMELY, SECURE OR FREE FROM ERROR,

        (C) ANY INFORMATION OBTAINED BY YOU AS A RESULT OF YOUR USE OF THE SERVICES WILL BE ACCURATE OR RELIABLE, AND

        (D) THAT DEFECTS IN THE OPERATION OR FUNCTIONALITY OF ANY SOFTWARE PROVIDED TO YOU AS PART OF THE SERVICES WILL BE CORRECTED.

    14.4 ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE SERVICES IS DONE AT YOUR OWN DISCRETION AND RISK AND THAT YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM THE DOWNLOAD OF ANY SUCH MATERIAL.

    14.5 NO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED BY YOU FROM GOOGLE OR THROUGH OR FROM THE SERVICES SHALL CREATE ANY WARRANTY NOT EXPRESSLY STATED IN THE TERMS.

    14.6 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.

15. LIMITATION OF LIABILITY

    15.1 SUBJECT TO OVERALL PROVISION IN PARAGRAPH 14.1 ABOVE, YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU FOR:

        (A) ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL CONSEQUENTIAL OR EXEMPLARY DAMAGES WHICH MAY BE INCURRED BY YOU, HOWEVER CAUSED AND UNDER ANY THEORY OF LIABILITY.. THIS SHALL INCLUDE, BUT NOT BE LIMITED TO, ANY LOSS OF PROFIT (WHETHER INCURRED DIRECTLY OR INDIRECTLY), ANY LOSS OF GOODWILL OR BUSINESS REPUTATION, ANY LOSS OF DATA SUFFERED, COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR OTHER INTANGIBLE LOSS;

        (B) ANY LOSS OR DAMAGE WHICH MAY BE INCURRED BY YOU, INCLUDING BUT NOT LIMITED TO LOSS OR DAMAGE AS A RESULT OF:

            (I) ANY RELIANCE PLACED BY YOU ON THE COMPLETENESS, ACCURACY OR EXISTENCE OF ANY ADVERTISING, OR AS A RESULT OF ANY RELATIONSHIP OR TRANSACTION BETWEEN YOU AND ANY ADVERTISER OR SPONSOR WHOSE ADVERTISING APPEARS ON THE SERVICES;

            (II) ANY CHANGES WHICH GOOGLE MAY MAKE TO THE SERVICES, OR FOR ANY PERMANENT OR TEMPORARY CESSATION IN THE PROVISION OF THE SERVICES (OR ANY FEATURES WITHIN THE SERVICES);

            (III) THE DELETION OF, CORRUPTION OF, OR FAILURE TO STORE, ANY CONTENT AND OTHER COMMUNICATIONS DATA MAINTAINED OR TRANSMITTED BY OR THROUGH YOUR USE OF THE SERVICES;

            (III) YOUR FAILURE TO PROVIDE GOOGLE WITH ACCURATE ACCOUNT INFORMATION;

            (IV) YOUR FAILURE TO KEEP YOUR PASSWORD OR ACCOUNT DETAILS SECURE AND CONFIDENTIAL;

    15.2 THE LIMITATIONS ON GOOGLE&#226;&#128;&#153;S LIABILITY TO YOU IN PARAGRAPH 15.1 ABOVE SHALL APPLY WHETHER OR NOT GOOGLE HAS BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.

16. Copyright and trade mark policies

    16.1 It is Google&#226;&#128;&#153;s policy to respond to notices of alleged copyright infringement that comply with applicable international intellectual property law (including, in the United States, the Digital Millennium Copyright Act) and to terminating the accounts of repeat infringers. Details of Google&#226;&#128;&#153;s policy can be found at http://www.google.com/dmca.html.

    16.2 Google operates a trade mark complaints procedure in respect of Google&#226;&#128;&#153;s advertising business, details of which can be found at http://www.google.com/tm_complaint.html.

17. Advertisements

    17.1 Some of the Services are supported by advertising revenue and may display advertisements and promotions. These advertisements may be targeted to the content of information stored on the Services, queries made through the Services or other information.

    17.2 The manner, mode and extent of advertising by Google on the Services are subject to change without specific notice to you.

    17.3 In consideration for Google granting you access to and use of the Services, you agree that Google may place such advertising on the Services.

18. Other content

    18.1 The Services may include hyperlinks to other web sites or content or resources. Google may have no control over any web sites or resources which are provided by companies or persons other than Google.

    18.2 You acknowledge and agree that Google is not responsible for the availability of any such external sites or resources, and does not endorse any advertising, products or other materials on or available from such web sites or resources.

    18.3 You acknowledge and agree that Google is not liable for any loss or damage which may be incurred by you as a result of the availability of those external sites or resources, or as a result of any reliance placed by you on the completeness, accuracy or existence of any advertising, products or other materials on, or available from, such web sites or resources.

19. Changes to the Terms

    19.1 Google may make changes to the Universal Terms or Additional Terms from time to time. When these changes are made, Google will make a new copy of the Universal Terms available at http://www.google.com/accounts/TOS?hl=en and any new Additional Terms will be made available to you from within, or through, the affected Services.

    19.2 You understand and agree that if you use the Services after the date on which the Universal Terms or Additional Terms have changed, Google will treat your use as acceptance of the updated Universal Terms or Additional Terms.

20. General legal terms

    20.1 Sometimes when you use the Services, you may (as a result of, or through your use of the Services) use a service or download a piece of software, or purchase goods, which are provided by another person or company. Your use of these other services, software or goods may be subject to separate terms between you and the company or person concerned. If so, the Terms do not affect your legal relationship with these other companies or individuals.

    20.2 The Terms constitute the whole legal agreement between you and Google and govern your use of the Services (but excluding any services which Google may provide to you under a separate written agreement), and completely replace any prior agreements between you and Google in relation to the Services.

    20.3 You agree that Google may provide you with notices, including those regarding changes to the Terms, by email, regular mail, or postings on the Services.

    20.4 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in the Terms (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google&#226;&#128;&#153;s rights and that those rights or remedies will still be available to Google.

    20.5 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of these Terms is invalid, then that provision will be removed from the Terms without affecting the rest of the Terms. The remaining provisions of the Terms will continue to be valid and enforceable.

    20.6 You acknowledge and agree that each member of the group of companies of which Google is the parent shall be third party beneficiaries to the Terms and that such other companies shall be entitled to directly enforce, and rely upon, any provision of the Terms which confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to the Terms.

    20.7 The Terms, and your relationship with Google under the Terms, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from the Terms. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.

April 16, 2007

</textarea>
</td></tr>
<tr><td>&#160;</td></tr>
<tr><td>
  <font size="-1">
  By clicking on 'I accept' below you are agreeing to the <a href="TOS?loc=US&amp;hl=en" target="_blank">Terms of Service</a> above and both the <a href="http://mail.google.com/mail/help/program_policies.html" target="_blank">Program Policy</a> and the <a href="http://www.google.com/intl/en/privacy/" target="_blank">Privacy Policy</a>.
  </font>
</td></tr>
</table>
<input type="hidden" id="program_policy_url" name="program_policy_url" value="http://mail.google.com/mail/help/program_policies.html"><input type="hidden" id="privacy_policy_url" name="privacy_policy_url" value="http://www.google.com/intl/en/privacy/"><input type="hidden" id="requested_tos_language" name="requested_tos_language" value="en"><input type="hidden" id="served_tos_location" name="served_tos_location" value="US"><input type="hidden" id="served_tos_language" name="served_tos_language" value="en">
</div>
  </div>
  </td>
  </tr>
<tr>
<td colspan="1">
  &#160;
  </td>
  <td colspan="1" align="center">
  <input style="width:19em" id="submitbutton" name="submitbutton" type="SUBMIT" value="I accept. Create my account.">
</td>
  </tr>
<div id="cookieWarning1" align="left"></div>
<tr>
<td></td>
  <td><div id="cookieWarning2"></div></td>
</tr>

</table>
</td></tr></table>
</td>
  </tr></table>
</td></tr></table>
</form>



</body>
</html>