-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1452 lines (1392 loc) · 99.3 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<title>Edit Ad - Boatsonline/Yachthub Admin System</title>
<META HTTP-EQUIV="Expires" CONTENT="Fri, Jun 12 1981 08:20:00 GMT">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<!-- Bootstrap core CSS -->
<link href="https://yachthub.com/plugins/bootstrap320/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap theme -->
<link href="https://yachthub.com/plugins/bootstrap320/css/bootstrap-theme.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<!-- <link href="theme.css" rel="stylesheet"> -->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<style type="text/css">
/* Change Container Width on big screens */
@media (min-width: 1330px) {
.container {
width: 1300px;
}
}
@media (max-width: 767px) { /* moble device display fixes */
.form-control,.select2-selection,.select2-search__field {font-size:16px;} /* fix for iphone zoom on input/textarea fields */
.col-xs-1.col-md-1 {float: right;} /* help button */
.popover.left {margin-left:0px; !important}
.popover.left > .arrow {right: -5px;margin-top: -5px;border-width:5px;border-right-width: 0px;}
}
/* Changer Header/Nav sizing spacing */
.header-info {
margin-top:60px;
}
.navbar-brand {
font-size:14px;
margin-top:-10px;
}
.page-header {
margin-bottom:0px;
border-bottom:0px;
}
/* used to rotate icons 180 degrees */
.rotateY180 {
-webkit-transform:rotateY(-180deg);
-moz-transform:rotateY(-180deg);
-ms-transform:rotateY(-180deg);
-o-transform:rotateY(-180deg);
/* filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); */
transform:rotateY(-180deg);
}
tr.bg-darkgrey {
background-color:#eee;
}
/* Make the table sorter headings more compact */
.tablesorter.table-condensed>thead>tr>th,
.tablesorter.table-condensed>tbody>tr>th,
.tablesorter.table-condensed>tfoot>tr>th,
.tablesorter.table-condensed>thead>tr>td,
.tablesorter.table-condensed>tbody>tr>td,
.tablesorter.table-condensed>tfoot>tr>td {
padding:3px;
}
/* Change the colour of hovered rows */
table.table tr.odd:hover td,
table.table tr.even:hover td {
background-color:#ddd !important;
}
/* For labels on form when we go to small screen */
label.control-label.col-xs-12 {
margin-top:5px;
margin-bottom:1px;
}
/* put a div with class no-more-tables around a table so table becomes a list below given width */
@media only screen and (max-width: 767px) {
/* Force table to not be like tables anymore */
.container .no-more-tables table,
.container .no-more-tables thead,
.container .no-more-tables tbody,
.container .no-more-tables th,
.container .no-more-tables td,
.container .no-more-tables tr {
display: block;
}
/* Hide table headers (but not display: none;, for accessibility) */
.container .no-more-tables thead tr {
position: absolute;
top: -9999px;
left: -9999px;
}
.container .no-more-tables tr { border: 1px solid #ccc; }
.container .no-more-tables td {
/* Behave like a "row" */
border: none;
border-bottom: 1px solid #eee;
position: relative;
padding-left: 50% !important;
white-space: normal;
text-align:left;
min-width:255px;
}
.container .no-more-tables td:before {
/* Now like a table header */
position: absolute;
/* Top/left values mimic padding */
top: 6px;
left: 6px;
width: 45%;
padding-right: 10px;
white-space: nowrap;
text-align:left;
font-weight: bold;
}
/* Label the data */
.container .no-more-tables td:before { content: attr(data-title); }
}
.row.no-gutter {
margin-left: 0;
margin-right: 0;
}
.row.no-gutter [class*='col-']:not(:first-child),
.row.no-gutter [class*='col-']:not(:last-child) {
padding-right: 0;
padding-left: 0;
}
.no-gutter {
padding-right: 0;
padding-left: 0;
}
/*For really long Make/Model and/or Ref Id or where we have set it with data-wordbreak="true" - with no spaces in it let it word wrap so it doesn't break the layout */
td[data-title^="Make"] a,
td[data-title^="Make"],
td[data-title^="Ref"],
td[data-title^="Email"] a,
td[data-title^="Email"],
td[data-wordbreak^="true"],
th[data-wordbreak^="true"]
{
-ms-word-break: break-all;
/* Be VERY careful with this, breaks normal words wh_erever */
word-break: break-all;
/* Non standard for webkit */
word-break: break-word;
-webkit-hyphens: none;
-moz-hyphens: none;
hyphens: none;
}
/*Hide the sorter icon for headings where we have set data-sorter="false" - fix for jquery sorter plugin should hide this anyway */
th[data-sorter="false"] .tablesorter-icon {
display:none !important;
}
input[type=checkbox] {height:19px;border-top:none;-webkit-box-shadow:none;box-shadow:none;}
.form-inline input[type=checkbox] {width: 19px !important;}
input[type=radio] {height:16px;width:16px;margin-top:0px;}
.panel-group .panel-title>a:after {
content: "\e114";
float: right;
font-family: 'Glyphicons Halflings';
}
.panel-group .panel-title>a.collapsed:after {
content: "\e080";
}
.ta-right {text-align:right}
.table-hover>tbody>tr:hover>td, .table-hover>tbody>tr:hover>th {background-color: #dfdfdf;}
.row.ensign-row label:after {
content: " +e";
font-style: italic;
vertical-align: super;
color: red;
}
</style>
</head>
<body role="document">
<!-- Fixed navbar -->
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<form method="post" name="csvs" action="csv.php">
<input type="hidden" name="user_id" value="">
</form>
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand visible-xs" href="#">Yachthub Boatsonline Admin<br>Melbourne Boat Sales</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class=""><a href="index-v2.php" class="nodisable">Home</a></li>
<li class="dropdown ">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown">Ads <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="boatlist-v2.html">Current Ads</a></li>
<li><a href="boatlist-v2.html?archive=true">Archived Ads</a></li>
<li><a href="list-v2.html">Create New Ad</a></li>
<li><a href="feed_out_mgmt.php">Manage Feeds Out</a></li>
<li><a href="client_notes_summary-v2.php">Notes and Boat Transfer/Contracts</a></li>
<li><a href="javascript:csvs.submit()">Download Ads List - CSV format</a></li>
<li><a href="wanted-boats-v2.html">Boats Wanted</a></li>
</ul>
</li>
<li class="dropdown ">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown">Advertising <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="advertising-v2.html" class="nodisable">Advertising Options & Dealer Management Tools</a></li>
<li><a href="boost_mylisting.php" class="nodisable"><span class="text-success">NEW - Boost My Listings Across Social Media & the Internet</span></a></li>
<li><a href="thumbs-v3-start.php">Priority Advertising - Book Now!</a></li>
<li><a href="newsfeed_summary-v2.php">My Media Releases</a></li>
<li><a href="headline_boats_edit-v2.html">Headline Boats on Your Website</a></li>
</ul>
</li>
<li class="dropdown ">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown">Statistics <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="stats-v2.php" class="nodisable">Ad Statistics</a></li>
<li><a href="list_enquiries-v2.html">Email Enquiries Log</a></li>
<li><a href="leads.php">NEW - Leads Log</a></li>
<li><a href="sold_data-v2.php">Historical Sales Data</a></li>
<li><a href="market_trends.php"><span class="text-success">NEW - Market Trends</span></a></li>
</ul>
</li>
<li class="dropdown ">
<a href="#" class="dropdown-toggle nodisable" data-toggle="dropdown" data-hover="dropdown">My Account <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="profile-v2.html">Settings</a></li>
<li><a href="profile-v2.html">Change Password</a></li>
<li><a href="bill-v2.php" class="nodisable">Online Payments & Invoices</a></li>
</ul>
</li>
<li><a href="contact_details-v2.html" class="nodisable">Contact Us</a></li>
<li><a href="logout-v2.html" class="nodisable">Logout</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container theme-showcase" role="main">
<!-- Main jumbotron for a primary marketing message or call to action -->
<!--
<div class="jumbotron">
</div>
-->
<div class="page-header">
<div class="container header-info">
<div class="row info">
<div class="col-md-4 col-sm-4 hidden-xs">
<img src="/boat_admin/images/admin_logos.gif" class="img-responsive">
</div>
<div class="col-md-4 col-sm-4 hidden-xs">
<a href="http://www.melbourneboatsales.com.au" class="clickme_url" user_id="3528" target="_blank">
<img src="/brokers/melbboatsales/logo.jpg" alt="Melbourne Boat Sales" class="img-responsive">
</a>
</div>
<div class="col-md-3 col-sm-4 hidden-xs text-right">
<p>
Welcome <strong>Melbourne Boat Sales</strong><br>
Last update: 29/01/2019<br>
Ads listed: 68<br>
Ads archived: 0<br>
</p>
</div>
</div>
</div>
<h3>Edit Ad 228149 - Category: Power Boats 41ft > 50ft</h3> </div> <!-- /page-header -->
<div class="row">
<div class="col-md-12">
<form method="post" action="" id="main-edit-form" name="kurt">
<fieldset class="bg-info">
<legend class="bg-primary top-level">Status</legend>
<div class="row">
<input type=hidden name=catID value='4'>
<input type=hidden name=archive value='0'>
<input type=hidden name=pe value='228149'>
<input type=hidden name=VIEWS value='0'>
<input type=hidden name=addDate value='1548298542'>
<input type=hidden name='timeofpageload' value='1548725542'>
<input type=hidden name="action" value='update_ad'>
</div>
<div class="row" id="row-PublishtoWeb">
<label for="radioPublishtoWeb1" class="control-label col-xs-12 col-md-2">Show on Web</label>
<div class="col-xs-12 col-md-10">
<div class="" style="padding-bottom:12px">
<label class="radio-inline">
<input type="radio" name="show_ad" value="show" id="radioPublishtoWeb1" checked > Publish to Web
</label> <label class="radio-inline">
<input type="radio" name="show_ad" value="hide" id="radioPublishtoWeb2" > Suspend Ad
</label><button type="button" class="btn btn-default popover-dismiss pull-right" tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true" title="Publish to Web" data-content="When first creating an ad, SAVE AS DRAFT is selected as the default. It is recommended to leave it as draft until the ad is ready for publication.<br><br>Select PUBLISH TO WEB when the boat ad is ready to be published. Be sure to click SAVE CHANGES button.<br><br> Select SUSPEND AD to put your ad on HOLD.">?</button>
</div>
</div>
</div> <div class="row">
<label for="" class="control-label col-xs-12 col-md-2">Feed to BoatSales</label>
<div class="col-xs-12 col-md-10">
<input type="checkbox" data-de="228149" data-feed="boatsales" name="feed_boatsales_228149" checked class="form-control pull-left feed-edit" >
</div>
</div> <div class="row">
<label for="" class="control-label col-xs-12 col-md-2">Feed to TradeBoats</label>
<div class="col-xs-12 col-md-1">
<input type="checkbox" data-de="228149" data-feed="tradeboats" name="feed_tradeboats_228149" checked class="form-control pull-left feed-edit" >
</div>
</div> <div class="row">
<label for="" class="control-label col-xs-12 col-md-2">Feed Own WebSite</label>
<div class="col-xs-12 col-md-1">
<input type="checkbox" data-de="228149" data-feed="websiteintegration" name="feed_websiteintegration_228149" checked class="form-control pull-left feed-edit" >
</div>
</div>
<style>
#input-websiteintegration_code {max-width:200px}
</style> <style>
#input-websiteintegration_code {max-width:200px}
</style> <div class="row ">
<label for="input-websiteintegration_code" class="control-label col-xs-12 col-md-2">Feed Own Website Code</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control " name="websiteintegration_code" id="input-websiteintegration_code" placeholder="" value="" maxlength="10">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Feed Own Website Code" data-content="This code only applies if you have requested a customised search category on your website feed." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div>
<div class="row" id="row-new_boat">
<label for="radioNewBoat1" class="control-label col-xs-12 col-md-2">New or Used</label>
<div class="col-xs-12 col-md-10">
<label class="radio-inline">
<input type="radio" name="new_boat" value="" id="radioNewBoat1" checked onClick="new_boat_change()"> Used Boat
</label>
<label class="radio-inline">
<input type="radio" name="new_boat" value="true" id="radioNewBoat2" onClick="new_boat_change()"> New Boat
</label>
<button type="button" class="btn btn-default popover-dismiss pull-right" tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true" title="New or Used" data-content="Select to list your boat ad in the USED BOAT or NEW BOAT section.">?</button>
</div>
</div>
<div class="row">
<label for="radioSold1" class="control-label col-xs-12 col-md-2">Sale Status</label>
<div class="col-xs-12 col-md-10">
<label class="radio-inline">
<input type="radio" name="sold" value="Sold" id="radioSold1" onClick="submit_sales_data('228149')"> Sold
</label>
<label class="radio-inline">
<input type="radio" name="sold" value="Under Offer" id="radioSold2" > Under Offer
</label>
<label class="radio-inline">
<input type="radio" name="sold" value="Under Contract" id="radioSold3" > Under Contract
</label>
<label class="radio-inline">
<input type="radio" name="sold" value="" id="radioSold4"> Reset/Clear
</label>
</div>
</div><div class="row row-edit-buttons">
<div class="col-xs-12">
<br>
<button type='button' class="btn btn-sm btn-default save_changes_button" tabindex="-1" value='Save Changes' onClick="checkFields()"><span class="glyphicon glyphicon-floppy-save"></span> Save Changes</button>
<button type="button" class="btn btn-sm btn-default check-spelling-button" tabindex="-1" value="Check Spelling"><span class="glyphicon glyphicon-check"></span> Check Spelling</button> <button type='button' class="btn btn-sm btn-default" tabindex="-1" value='Update Photos and Videos' onClick="location.href='image_upload-v2.php?ad_id=228149'" oncontextmenu="return false;"><span class="glyphicon glyphicon-picture"></span> Upload Photos and Video</button>
<button type='button' class="btn btn-sm btn-default" tabindex="-1" value='View Ad' onClick="view_ad_edit_screen(228149,'yh_bol_s')"><span class="glyphicon glyphicon-eye-open"></span> View Ad</button> <button type='button' class="btn btn-sm btn-default" tabindex="-1" value='Leads Log' onClick="location.href='leads.php?pe=228149'" oncontextmenu="return false;"><span class="glyphicon glyphicon-list-alt"></span> Leads Log</button>
<button type='button' class="btn btn-sm btn-default" tabindex="-1" value='Seller/Buyer Notes' onClick="location.href='clientnotes.php?pe=228149'" oncontextmenu="return false;"><span class="glyphicon glyphicon-user"></span> Notes & Print Transfer Forms</button>
<button type='button' class="btn btn-sm btn-default" tabindex="-1" value='Archive Ad' onClick="archiveThis()"><span class="glyphicon glyphicon-download"></span> Archive Ad</button> <button type='button' class="btn btn-sm btn-default" tabindex="-1" value='Print Options' onClick="location.href='print_options.php?pe=228149'" oncontextmenu="return false;"><span class="glyphicon glyphicon-print"></span> Print Options & Marketing Flyers</button>
<br>
<br>
</div>
</div></fieldset>
<fieldset class="bg-info">
<legend class="bg-primary top-level">Specifications</legend>
<div class="row">
<div class="col-xs-12 col-md-2">Required fields <span class="text-danger required_fields">*</span></div>
<div class="col-xs-12 col-md-10">Unless indicated as a required field, leave fields blank if it is not applicable to your ad - blank fields will not appear on your ad.</div>
</div>
<div class="row">
<label for="inputCategory" class="control-label col-xs-12 col-md-2">Category <span class="text-danger">*</span></label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<select class="form-control" name="Category" id="inputCategory" placeholder="">
<option value='sail_mono'>Sail Monohulls
<option value='sail_cat'>Sail Catamarans
<option value='sail_tri'>Sail Trimarans
<option value='power_mono' selected>Power Boats Monohull
<option value='power_multi'>Power Boats Multihull
<option value=''>--------------------------------
<option value='trailer_mono'>Trailer Boats Sail Monohull
<option value='trailer_multi'>Trailer Boats Sail Multihull
<option value='trailer_power'>Trailer Boats Power
<option value='jetskis'>Jetskis (PWC)
<option value=''>--------------------------------
<option value='charter_mono'>Charter Yachts Sail Monohull (for sale)
<option value='charter_multi'>Charter Yachts Sail Multihull (for sale)
<option value='charter_power'>Charter Yachts Power (for sale)
<option value=''>--------------------------------
<option value='sharesail'>Boat Share Sail
<option value='sharepower'>Boat Share Power
<option value=''>--------------------------------
<option value='house_boats'>House Boats
<option value='com'>Commercial Vessels
<option value='dinghy'>Dinghies / Tinnies / Inflatables
<option value=''>--------------------------------
<option value='berth'>Berthing
<option value='misc'>Boat Accessories
<option value='property'>Marine Properties
<option value='business'>Marine Businesses
</select> <div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true" title="Category" data-content="Change your category.">?</button>
</div>
</div>
</div>
</div>
<div class="row">
<label for="inputAlso" class="control-label col-xs-12 col-md-2">Additional Category</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<select class="form-control" name="Also" id="inputAlso" placeholder="" onChange="checkCat()">
<option value=''>None
<option value='sail_mono'>Sail Monohulls
<option value='sail_cat'>Sail Catamarans
<option value='sail_tri'>Sail Trimarans
<option value='power_mono'>Power Boats Monohull
<option value='power_multi'>Power Boats Multihull
<option value=''>--------------------------------
<option value='trailer_mono'>Trailer Boats Sail Monohull
<option value='trailer_multi'>Trailer Boats Sail Multihull
<option value='trailer_power'>Trailer Boats Power
<option value='jetskis'>Jetskis (PWC)
<option value=''>--------------------------------
<option value='charter_mono'>Charter Yachts Sail Monohull
<option value='charter_multi'>Charter Yachts Sail Multihull
<option value='charter_power'>Charter Yachts Power
<option value=''>--------------------------------
<option value='house_boats'>House Boats
<option value='com'>Commercial Vessels
<option value='dinghy'>Dinghies / Tinnies / Inflatables
<option value='misc'>Boat Accessories
</select>
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true" title="Additional Category" data-content="Select one additional category for the vessel to be listed at.<br><br>For example, a sail multihull vessel in charter could be listed in the SAIL CATAMARAN and CHARTER YACHTS MULTIHULL sections simultaneously.">?</button>
</div>
</div>
</div>
</div> <div class="row">
<label for="input-boat_usage-select" class="control-label col-xs-12 col-md-2">Boat Usage <span class="text-danger">*</span></label>
<div class="col-md-9 col-sm-11 col-xs-10">
<div class="form-inline">
<div class="form-group">
<select class="form-control" name="boat_usage-select" id="input-boat_usage-select" multiple="multiple">
<option value="1" selected>Family</option> <option value="2" selected>Leisure</option> <option value="3" selected>Cruising</option> <option value="4">Racing</option> <option value="5">In-shore Fishing</option> <option value="6">Off-shore Fishing</option> <option value="7">Charter</option> <option value="8">Commercial</option> <option value="9">Skiing</option> <option value="10">Wakeboarding</option> <option value="11">Live Aboard</option>
</select>
<input id="input-boat_usage" type="hidden" name="boat_usage" value="1,2,3">
<input id="input-BoatUsage" type="hidden" name="BoatUsage" value="Family, Leisure, Cruising">
</div>
</div>
</div>
<div class="col-xs-1 col-md-1">
<button type="button" class="pull-right btn btn-default popover-dismiss" title="Boat Usage" data-content="Choose up to 3 different ways in which your boat could be used." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div> <div class="row ">
<label for="input-Reference" class="control-label col-xs-12 col-md-2">Reference/Stock Num <span class="text-danger">*</span></label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control no-spell-check" name="Reference" id="input-Reference" readonly placeholder="" value="3266" maxlength="50">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Reference/Stock Number" data-content="Yacht Brokers may enter their vessel's reference or stock number." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row">
<label for="input-makeid" class="control-label col-xs-12 col-md-2">Make <span class="text-danger">*</span></label>
<div class="col-md-9 col-sm-11 col-xs-10">
<div class="form-inline">
<div class="form-group">
<select class="form-control " name="makeid" id="input-makeid">
</select>
</div>
<div class="form-group">
<a class="btn btn-sm btn-default request_make" href="javascript:open_modal('/boat_admin/makemodel_request.php?type=make&ad_id=228149');" tabindex="-1">Request a Make be Added to the List</a>
</div>
</div>
</div>
<div class="col-xs-1 col-md-1">
<button type="button" class="pull-right btn btn-default popover-dismiss" title="Make" data-content="Choose the Make of your boat from the list.<br><br>For one off/unique/custom boats please choose the Make of `Custom` and then enter some descriptive text into the `Make/Model Headline Extra Text` field in order to describe your boat.<br><br>If you cannot find your Make, please click the button `Request a Make be Added to the List`. We will notify you when your request is completed and you may then update your ad to reflect the correct Make to ensure it will appear correctly in future search functions." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div> <div class="row">
<label for="input-modelid" class="control-label col-xs-12 col-md-2">Model <span class="text-danger">*</span></label>
<div class="col-md-9 col-sm-11 col-xs-10">
<div class="form-inline">
<div class="form-group">
<select class="form-control " name="modelid" id="input-modelid" placeholder="" >
<option data-key="1" value="1">No Model/Unknown</option> <option data-key="103" value="103">1450 Bowrider</option> <option data-key="3" value="3">1500 Half Cabin</option> <option data-key="106" value="106">1600</option> <option data-key="5" value="5">1600 Bowrider</option> <option data-key="7" value="7">1600 Tournament</option> <option data-key="10" value="10">1700 Cuddy</option> <option data-key="11" value="11">1750 Runabout</option> <option data-key="12" value="12">1750 Tournament</option> <option data-key="111" value="111">1800 Bowrider</option> <option data-key="14" value="14">1800 Runabout</option> <option data-key="6" value="6">19 Center Console</option> <option data-key="13" value="13">20</option> <option data-key="2" value="2">2000</option> <option data-key="17" value="17">2000 Bluewater</option> <option data-key="20" value="20">2000 Tournament</option> <option data-key="21" value="21">2150 Walkaround</option> <option data-key="22" value="22">2200 Clubsport</option> <option data-key="23" value="23">2250 Bluewater</option> <option data-key="24" value="24">2250 Walkaround</option> <option data-key="25" value="25">2300 Bowrider</option> <option data-key="86" value="86">2400</option> <option data-key="26" value="26">2400 Clubsport</option> <option data-key="98" value="98">2600</option> <option data-key="93" value="93">2600 Sportscruiser Series 2</option> <option data-key="90" value="90">28</option> <option data-key="31" value="31">2800 Series 111 Sportscruiser</option> <option data-key="99" value="99">2800 Series 2 Sports Cruiser</option> <option data-key="92" value="92">2800 Series 3</option> <option data-key="32" value="32">2800 Series II</option> <option data-key="34" value="34">2800 Sportscruiser</option> <option data-key="110" value="110">2800 SportsCruiser Series III</option> <option data-key="94" value="94">2800 Super Sports</option> <option data-key="36" value="36">2850 Sportscruiser</option> <option data-key="37" value="37">2900 Sportscruiser</option> <option data-key="38" value="38">3000 Sportscruiser</option> <option data-key="39" value="39">32</option> <option data-key="40" value="40">32 Sports Cruiser</option> <option data-key="41" value="41">3200 Sportscruiser</option> <option data-key="42" value="42">3200 Wide Body Sports Cruiser</option> <option data-key="75" value="75">3200/3400 Widebody Sports Cruiser</option> <option data-key="43" value="43">3200LE Sportscruiser</option> <option data-key="100" value="100">3200SE</option> <option data-key="44" value="44">3200SE Sportscruiser</option> <option data-key="45" value="45">3400 Sportscruiser</option> <option data-key="46" value="46">3400 Wide Body</option> <option data-key="47" value="47">3500 Sportscruiser</option> <option data-key="97" value="97">37 Flybridge</option> <option data-key="49" value="49">38 Flybridge</option> <option data-key="107" value="107">3800 Flybridge Cruiser</option> <option data-key="108" value="108">3800 Hard Top</option> <option data-key="52" value="52">3800 LE Sportscruiser</option> <option data-key="112" value="112">3800 Royal</option> <option data-key="54" value="54">3800 Sportcruiser</option> <option data-key="56" value="56">3800 Sports Top</option> <option data-key="57" value="57">3800 Sportscruiser</option> <option data-key="96" value="96">4100 Flybridge</option> <option data-key="82" value="82">42</option> <option data-key="104" value="104">4200 Hard Top</option> <option data-key="59" value="59">4200 Sports Top</option> <option data-key="61" value="61" selected>4200 Sportscruiser</option> <option data-key="62" value="62">43</option> <option data-key="63" value="63">430 Sports Coupe</option> <option data-key="101" value="101">4600</option> <option data-key="102" value="102">4600 Hard Top</option> <option data-key="65" value="65">4600 Sports Top Ips</option> <option data-key="66" value="66">4600 Sportscruiser</option> <option data-key="67" value="67">480 Sports Euro</option> <option data-key="68" value="68">50</option> <option data-key="4" value="4">7.50 Walkaround</option> <option data-key="91" value="91">800ST CLUBSPORT</option> <option data-key="76" value="76">Half Cabin</option> <option data-key="109" value="109">M32</option> <option data-key="89" value="89">M320 Maritimo</option> <option data-key="78" value="78">M41 Sports Flybridge</option> <option data-key="87" value="87">M43 Flybridge</option> <option data-key="105" value="105">MU32</option> <option data-key="83" value="83">Runabout</option> <option data-key="16" value="16">S43</option> <option data-key="84" value="84">Sports Cruiser</option> <option data-key="95" value="95">Sportscruiser Series III</option>
</select>
</div>
<div class="form-group">
<a class="btn btn-sm btn-default request_model" href="javascript:open_modal('/boat_admin/makemodel_request.php?type=model&ad_id=228149&makeid='+$('#input-makeid').val());" tabindex="-1">Request a Model be Added to the List</a>
</div>
</div>
</div>
<div class="col-xs-1 col-md-1">
<button type="button" class="pull-right btn btn-default popover-dismiss" title="Model" data-content="Choose the Model of your boat from the drop down list. Note this list is only populated with the correct list after you have chosen your Make.<br><br>If you cannot find your Model, please click the button `Request a Model be Added to the List`." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div> <div class="row ">
<label for="input-MakeModelExtra" class="control-label col-xs-12 col-md-2">Make/Model Headline Extra Text</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control " name="MakeModelExtra" id="input-MakeModelExtra" placeholder="" value="- 2 CABINS, 2 BATHROOMS" maxlength="50">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Make/Model Headline Extra Text" data-content="Enter extra text to show after the Make and Model in the Make/Model Headline.<br><br>Enter something descriptive that people may search for.<br><br>Do not repeat the Make and Model information as this is automatically included in the Headline of your listing (see the field below).<br><br>Do not list other boat Makes.<br><br>This field is optional and may be left blank." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row ">
<label for="input-MakeModel" class="control-label col-xs-12 col-md-2">Make/Model Headline <span class="text-danger">*</span></label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control no-spell-check" name="MakeModel" id="input-MakeModel" readonly placeholder="" value="Mustang 4200 Sportscruiser - 2 CABINS, 2 BATHROOMS" maxlength="150">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Make/Model Headline (Title)" data-content="This is the main headline or title of your listing and is automatically generated by joining together the Make, Model and Make/Model Headline Extra Text fields above.<br><br>If you have selected `No Model/Unknown` as your Model this field is instead generated by joining together the Make and Make/Model Headline Extra Text fields only.<br><br>You cannot edit this field directly." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row ">
<label for="input-descript" class="control-label col-xs-12 col-md-2">Description <span class="text-danger">*</span></label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<textarea type="text" class="form-control" name="descript" id="input-descript" placeholder="" rows="52" maxlength="12000">This Mustang 4200 Sports Cruiser presents beautifully and packs a lot of punch for a cruiser of its size, with 2 spacious cabins, 2 bathrooms (main with separate shower stall and head) and large entertainers' cockpit with ample seating.
Powered by Twin Volvo 8.1 V8 MPI Engines with Bow Thruster and Lowrance Electronics.
The 2 Cabin Layout features a Forward Master with separate Shower and Head and Aft Cabin with Bathroom. The saloon includes wrap around seating, dining table, TV, a well-equipped galley with teak and holly flooring, lots of storage, microwave, 2 burner electric stove and fridge/freezer.
Entertainers cockpit with abundant seating over 2 levels, teak cockpit table, Wet Bar with fridge and sink, 40" TV with DVD, Cockpit Speakers and SS BBQ.
Features include
- 2 Cabin Layout
- 2 Bathrooms, Main with Separate Shower
- Bow Thruster
- Large Entertainers Cockpit
- Teak and Holly Flooring
- Twin Volvo 8.1 V8 MPI Engines
- 2 TV's 40" and 21"
- Wet Bar
- SS BBQ, SS Rail with Davits
- New Clears & Top Canopy
- Tender with Outboard
Be quick for this one.
Call now for more information. Inspection strictly by appointment only.
With new stock regularly coming in, associated dealers Australia wide and bottom drawer listings your ideal boat could be waiting for you. Register your details with us and we will do our utmost to find you the perfect boat.
Just some of the brands we can offer include; Absolute, Chris Craft, ZAR Formenti, Riviera, Sea Ray, Jeanneau, Four Winns, Mustang, Beneteau, Maritimo, Caribbean, Princess, Sunseeker, Meridian, Sunrunner, Bayliner, Grady White, Fairline, Boston Whaler, Chaparral, Horizon, Monte Fino, Chris Craft, Regal, Bertram.
____________________________________ ___________
WE'RE HERE TO HELP MAKE BUYING YOUR NEW BOAT EASY. . .
Located at the centre of Melbourne's boating hub we are Melbourne's leading dealer in new and pre-owned brokerage boats.
Find us a stone's throw from Etihad Stadium on Victoria Harbour Promenade.
We pride ourselves on providing the right advice to buyers by assisting them to choose quality vessels that really work for their individual and family requirements.
Although Melbourne based, many of our clients are from interstate. Interstate buyers recognise the quality of Victorian vessels.
We ensure boat owners are prepared to face the open water when they take delivery of their new vessel. Your enjoyment and safety on the water is top priority. Before we hand over the keys we take the time to ensure you are familiar with your new pride and joy.
We can also offer assistance with Delivery (Australia Wide), Insurance, Finance, Boat Tuition and even finding a marina berth.
THINKING OF SELLING YOUR BOAT?
We invite you to take the opportunity to sell your boat through our experienced marine outlet. Our sales campaign is at NO COST TO YOU, until we are successful in the sale of your boat.
Whether you're a first time boat buyer or experienced skipper, we are committed to ensure the journey of buying or selling a boat with us is a pleasurable one.
Our commitment to excellence has been acknowledged by the Boating Industry Association of Victoria, with our appointment as a BIA Accredited Dealer.
Whether buying or selling, please do not hesitate to contact us. We look forward to hearing from you.</textarea>
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Description" data-content="Description of vessel.<br><br>This field entry is mandatory." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row">
<label for="" class="control-label col-xs-12 col-sm-12 col-md-2">Hide Description Footer</label>
<div class="col-xs-2 col-sm-2 col-md-1">
<input type="checkbox" name="descript_footer_hide" value="1" class="form-control pull-left">
</div>
<div class="col-xs-8 col-sm-9 col-md-8"><a href="profile-v2.html?descript_footer=Y" target="_blank">Click here to create</a></div>
<div class="col-xs-1 ZZcol-xs-offset-10 col-sm-1 ZZcol-sm-offset-10 col-md-1 ZZcol-md-offset-8">
<button type="button" class="pull-right btn btn-default popover-dismiss" title="Hide Description Footer" data-content="The description footer can be set by going to the My Accont menu -> Settings page.<br><br>Note the description footer is never sent as part of your BoatSales or TradeBoats feed even if this box is left unticked - only the description text above is sent." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div> <div class="row">
<label for="input-hullmaterialid" class="control-label col-xs-12 col-md-2">Hull Material <span class="text-danger">*</span></label>
<div class="col-md-9 col-sm-11 col-xs-10">
<div class="form-inline">
<div class="form-group">
<select class="form-control " name="hullmaterialid" id="input-hullmaterialid" placeholder="">
<option value="1">Aluminium</option> <option value="9">Carbon Fibre</option> <option value="5">Composite</option> <option value="6">Ferro</option> <option value="2" selected>Fibreglass/GRP</option> <option value="7">Inflatable</option> <option value="10">Plate Alloy</option> <option value="11">Ply/Ply-Glass</option> <option value="8">Polyethylene/Plastic</option> <option value="3">Steel</option> <option value="4">Timber</option>
</select>
</div>
</div>
</div>
<div class="col-xs-1 col-md-1">
<button type="button" class="pull-right btn btn-default popover-dismiss" title="Hull Material" data-content="Choose your hull material from the list provided." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div> <div class="row ">
<label for="input-HullMaterialExtra" class="control-label col-xs-12 col-md-2">Hull Material Extra Text</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control " name="HullMaterialExtra" id="input-HullMaterialExtra" placeholder="" value="" maxlength="80">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Hull Material Extra Text" data-content="Enter any extra text you wish to appear after the Hull Material field.<br><br>This field is optional and may be left blank." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row ">
<label for="input-HullMaterial" class="control-label col-xs-12 col-md-2">Hull Material Displayed <span class="text-danger">*</span></label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control no-spell-check" name="HullMaterial" id="input-HullMaterial" readonly placeholder="" value="Fibreglass/GRP" maxlength="100">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Hull Material Displayed" data-content="This is automatically generated by joining together the Hull Material and Hull Material Extra Text fields above.<br><br>You cannot edit this field directly." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div>
<div class="row">
<label for="inputLength" class="control-label col-xs-12 col-md-2">Length <span class="text-danger">*</span></label>
<div class="col-md-9 col-sm-11 col-xs-10">
<div class="form-inline">
<div class="form-group no-gutter col-md-3 col-sm-3 col-xs-12">
<div class="input-group">
<input type="number" class="form-control" name="Length" id="inputLength" size="6" min="1" max="100" step="any" maxLength="6" value="12.81" data-oldvalue="" onKeyup="calc_imp_from_met()" onChange="calc_imp_from_met()">
<span class="input-group-addon">Metres</span>
</div>
</div>
<div class="col-md-5 col-sm-7 col-xs-12 form-group">
<div class="input-group">
<span class="input-group-addon hidden-xs">OR</span>
<input type="number" class="form-control" name="feet" size="3" min="0" max="327" step="any" maxLength="3" value="" data-oldvalue="" onKeyup="calc_met_from_imp()" onChange="calc_met_from_imp()">
<span class="input-group-addon">Feet</span>
<input type="number" class="form-control" name="inches" size="2" min="0" max="11" step="any" maxLength="2" value="" data-oldvalue="" onKeyup="calc_met_from_imp()" onChange="calc_met_from_imp()">
<span class="input-group-addon">Inch<span class="hidden-xs"es</span></span>
</div>
</div>
</div>
</div>
<div class="col-xs-1 col-md-1">
<button type="button" class="pull-right btn btn-default popover-dismiss" tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true" title="Length" data-content="Enter the metric length either as a full decimal value, ie 10.87 or 9.00. Use decimal points only, not commas.<br><br>Enter imperial length in full feet and inches (inches not mandatory) without commas or decimal points.<br><br>Conversion to either metric or imperial is automatic.<br><br>This field entry is mandatory.">?</button>
</div>
</div>
<div class="row">
<label for="inputCurrency" class="control-label col-xs-12 col-md-2">Price <span class="text-danger">*</span></label>
<div class="col-md-9 col-sm-11 col-xs-10">
<div class="form-inline">
<div class="form-group">
<select class="form-control" name="Currency" id="inputCurrency">
<option value="AU" selected >AU $
<option value="NZ" >NZ $
<option value="US" >US $
<option value="HK" >HK $
<option value="SG" >SG $
<option value="Euro " >Euro €
<option value="UK " >UK £
<option value="THB " >THB ß
</select>
</div>
<div class="form-group">
<div class="input-group">
<input type="text" class="form-control" name="Price" maxLength="10" value="175000" onBlur="validate_price()" style="text-align:right;padding-right:3px">
<span class="input-group-addon" style="padding-left: 0px;padding-top: 5px;"><span style="font-size: 40px;line-height: 1px;">.</span>00</span> <div class="clearfix visible-xs"></div>
<select name="feed_boatsales_price_type" class="form-control">
<option selected value="0">IGC Price on BoatSales</option>
<option value="1" >EGC Price on BoatSales</option>
</select> </div>
<a class="btn btn-sm btn-default" href="javascript:open_modal('/boat_admin/currency_converter.html');">Currency Converter</a>
</div>
</div>
</div>
<div class="col-xs-1 col-md-1">
<button type="button" class="pull-right btn btn-default popover-dismiss" tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true" title="Price" data-content="Enter only full values without spaces, commas or points. Do not use $ or other currency identifiers in the price field. Sample: enter 183000 for $183,000. The software will format the price correctly.<br><br>If no price is to be shown enter POA (in upper case).<br><br>Price Comment can be selected from the drop box to appear next to the price.<br><br>The Currency Converter links to an external website and provides live currency exchange rates.<br><br>The price field entry is mandatory.">?</button>
</div>
</div>
<div class="row">
<label for="inputPriceComment" class="control-label col-xs-12 col-md-2">Price Comment</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<select class="form-control" name="PriceComment" id="inputPriceComment" placeholder="">
<!-- XPriceComment: -->
<option value='' selected>please select if applicable
<option value='base price'>base price
<option value='buyers over'>buyers over
<option value='or nearest offer'>or nearest offer
<option value='ono'>ono
<option value='make an offer'>make an offer
<option value='negotiable'>negotiable
<option value='firm'>firm
<option value='reduced'>reduced
<option value='now reduced'>now reduced
<option value='huge price reduction'>huge price reduction
<option value='GST included'>GST included
<option value='plus GST if applicable'>plus GST if applicable
<option value='plus Duty/GST if applicable'>plus Duty/GST if applicable
<option value='Inc GST but excl Govt charges'>Inc GST but excl Govt charges
<option value='plus Shipping,GST & other fees'>plus Shipping,GST & other fees
<option value='additional costs may apply'>additional costs may apply
<option value='Duty/Transport may apply'>Duty/Transport may apply
<option value='excluding Duty/GST'>excluding Duty/GST
<option value='including Duty/GST'>including Duty/GST
<option value='minimum bid'>minimum bid
<option value='auction'>auction
<option value='tender'>tender
<option value='indicative price'>indicative price
<option value='no more to pay - drive away'>no more to pay - drive away
<option value='landed'>landed
<option value='expressions of interest'>expressions of interest
</select>
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true" title="Price Comment" data-content="Select an option.">?</button>
</div>
</div>
</div>
</div>
<div class="row">
<label for="inputCountry" class="control-label col-xs-12 col-md-2">Region <span class="text-danger">*</span></label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<select class="form-control" name="Country" id="inputCountry" placeholder="">
<option value=''>please select region</option>
<option value='New South Wales'>New South Wales</option>
<option value='Northern Territory'>Northern Territory</option>
<option value='Queensland'>Queensland</option>
<option value='South Australia'>South Australia</option>
<option value='Tasmania'>Tasmania</option>
<option value='Victoria' selected>Victoria</option>
<option value='Western Australia'>Western Australia</option>
<option value=''>--------------------------------</option>
<option value='New Zealand'>New Zealand</option>
<option value='South Pacific'>South Pacific</option>
<option value='Asia'>Asia</option>
<option value='Europe'>Europe</option>
<option value='Africa and Middle East'>Africa and Middle East</option>
<option value='North America and Caribbean'>North America and Caribbean</option>
<option value='South America'>South America</option>
</select>
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true" title="Region" data-content="This field is pre-populated with your office region which may not be the actual boat location. If required change to where the vessel is located.<br><br>Example: New Zealand">?</button>
</div>
</div>
</div>
</div> <div class="row ">
<label for="input-Location" class="control-label col-xs-12 col-md-2">Location</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control " name="Location" id="input-Location" placeholder="" value="Melbourne Boat Sales, Docklands, VIC" maxlength="50">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Location" data-content="This field is pre-populated with your office location which may not be the actual boat location. To change the entry just swipe and enter the location for the boat<br><br>Example: Lake Macquarie NSW." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row">
<label for="input-Year" class="control-label col-xs-12 col-md-2">Launch Year <span class="text-danger">*</span></label>
<div class="col-lg-9 col-md-9 col-sm-11 col-xs-11">
<div class="form-inline">
<div class="form-group">
<input type="text" class="form-control" name="Year" id="input-Year" placeholder="" value="2005" maxlength="4">
<div class="visible-xs-inline visible-sm-inline visible-md-inline visible-lg-inline " id="Year_approx_container">
If Launch Year is approximate, tick this box <input type="checkbox" name="Year_approx" value="1" class="form-control visible-xs-inline visible-sm-inline visible-md-inline visible-lg-inline">
</div>
</div>
</div>
</div>
<div class="col-xs-1">
<button type="button" class="btn btn-default popover-dismiss pull-right" title="Year" data-content="Enter the year of first launch or year of production.<br><br>Enter 4 digits.<br><br>If you are unsure of the exact Year, please tick the Approximate only box." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<button type='button' class="btn btn-sm btn-default save_changes_button" tabindex="-1" value='Save Changes' onClick="checkFields()"><span class="glyphicon glyphicon-floppy-save"></span> Save Changes</button>
<br><br>
</div>
</div>
</fieldset><fieldset id="edit-inventory">
<legend class="bg-primary top-level">Optional Specifications</legend>
<legend class="bg-primary sub-level">General</legend> <div class="row ">
<label for="input-VesselName" class="control-label col-xs-12 col-md-2">Vessel Name</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control " name="VesselName" id="input-VesselName" placeholder="" value="" maxlength="100">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Vessel Name" data-content="Enter the name given to the vessel." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row ">
<label for="input-Beam" class="control-label col-xs-12 col-md-2">Beam</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control " name="Beam" id="input-Beam" placeholder="" value="3.97m" maxlength="50">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Beam" data-content="Enter the vessel's beam in metric or imperial measure.<BR><br>Examples: 3.10m or 10´ 2" or 10ft 2in" tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row ">
<label for="input-Draft" class="control-label col-xs-12 col-md-2">Draft</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control " name="Draft" id="input-Draft" placeholder="" value="1.00m" maxlength="100">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Draft" data-content="Enter the vessel's draft in metric or imperial measure.<BR><br>Examples: 1.50m or 4´ 11" or 4ft 11in<BR>For drop or swing keelers add keel up / keel down." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row ">
<label for="input-Weight" class="control-label col-xs-12 col-md-2">Displacement</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control " name="Weight" id="input-Weight" placeholder="" value="9000kg" maxlength="50">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Displacement" data-content="Enter the weight of the vessel in metric (kg or tonne) or imperial (lbs or ton) measure" tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row ">
<label for="input-DecksMaterial" class="control-label col-xs-12 col-md-2">Decks Material</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control " name="DecksMaterial" id="input-DecksMaterial" placeholder="" value="" maxlength="250">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Decks Material" data-content="Enter the material the deck is made of<br><br>Example: GRP" tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row ">
<label for="input-Designer" class="control-label col-xs-12 col-md-2">Designer</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control " name="Designer" id="input-Designer" placeholder="" value="" maxlength="100">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Designer" data-content="Enter designer of vessel if known<br><br>Example: Bruce Roberts" tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row ">
<label for="input-Builder" class="control-label col-xs-12 col-md-2">Builder</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control " name="Builder" id="input-Builder" placeholder="" value="" maxlength="100">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Builder" data-content="Enter builder or manufacturer of vessel if known<br><br>Example: Riviera Yachts" tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row ">
<label for="input-HIN" class="control-label col-xs-12 col-md-2">HIN</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control no-spell-check" name="HIN" id="input-HIN" placeholder="" value="" maxlength="20">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="HIN" data-content="Enter the HIN (Hull Identification Number)." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row ">
<label for="input-RegistrationNumber" class="control-label col-xs-12 col-md-2">Registration Number</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control no-spell-check" name="RegistrationNumber" id="input-RegistrationNumber" placeholder="" value="" maxlength="10">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Registration Number" data-content="Enter the registration number of the vessel." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row ">
<label for="input-RegistrationExpiry" class="control-label col-xs-12 col-md-2">Registration Expiry (dd/mm/yyyy)</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control no-spell-check" name="RegistrationExpiry" id="input-RegistrationExpiry" placeholder="" value="" maxlength="10">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Registration Expiry" data-content="Enter the registration expiry date in dd/mm/yyyy format." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <legend class="bg-primary sub-level">Engine / Machinery</legend> <div class="row">
<label for="input-enginemakeid" class="control-label col-xs-12 col-md-2">Engine Make</label>
<div class="col-md-9 col-sm-11 col-xs-10">
<div class="form-inline">
<div class="form-group">
<select class="form-control" name="enginemakeid" id="input-enginemakeid" placeholder="">
<option value="1"> </option> <option value="2">Arnolt</option> <option value="3">ARONA</option> <option value="4">Atlas</option> <option value="5">Baudouin</option> <option value="6">Bedford</option> <option value="7">Beta</option> <option value="8">Black Scorpion</option> <option value="9">Blufton</option> <option value="10">BMC</option> <option value="11">BMW</option> <option value="12">Bombardier</option> <option value="13">Buda</option> <option value="14">Buick</option> <option value="15">Bukh</option> <option value="16">BW Lathrop</option> <option value="17">Caterpillar</option> <option value="18">Chevrolet</option> <option value="19">Chris Craft</option> <option value="20">Chrysler</option> <option value="21">Clae Holden</option> <option value="22">CMD</option> <option value="23">Cobra</option> <option value="24">Crusader</option> <option value="25">Cummins</option> <option value="26">Daedong</option> <option value="27">Daewoo</option> <option value="28">Daf</option> <option value="29">Daihatsu</option> <option value="30">Daimler-Benz</option> <option value="31">Daytona DME</option> <option value="32">DBD Marine</option> <option value="33">Detroit</option> <option value="34">Deutz</option> <option value="35">Diecon</option> <option value="158">Dongfeng</option> <option value="36">Drofin</option> <option value="37">Ducati</option> <option value="38">Elco</option> <option value="39">Evinrude</option> <option value="40">Evinrude Etec</option> <option value="41">Fairbanks Morse</option> <option value="42">Farymann</option> <option value="43">Fiat</option> <option value="44">Flagship</option> <option value="45">Force</option> <option value="46">Ford</option> <option value="47">Ford Lees</option> <option value="48">Ford Lehman</option> <option value="49">Ford Windsor</option> <option value="50">Gardner</option> <option value="51">Gecko</option> <option value="52">General Motors</option> <option value="53">Glenifer</option> <option value="54">Gray Marine</option> <option value="55">Hall Scott</option> <option value="56">Hammerhead</option> <option value="57">Hatz</option> <option value="58">Hercules</option> <option value="59">Hino</option> <option value="60">Holden</option> <option value="61">Honda</option> <option value="62">Horizon</option> <option value="63">Ilmor</option> <option value="64">Indmar</option> <option value="65">Isuzu</option> <option value="66">Iveco</option> <option value="67">Jarvis Walker</option> <option value="68">John Deere</option> <option value="69">Johnson</option> <option value="70">Kawasaki</option> <option value="71">Kelvin</option> <option value="72">Kermath</option> <option value="73">Kohler</option> <option value="74">Komatsu</option> <option value="75">Kubota</option> <option value="76">Lees Marine</option> <option value="77">Lehman</option> <option value="78">Leyland</option> <option value="79">Lister</option> <option value="80">Lister Petter</option> <option value="81">Lomatec</option> <option value="82">Lombardini</option> <option value="83">Lugger</option> <option value="84">Lycombing</option> <option value="85">Magnum</option> <option value="86">MAN</option> <option value="87">Marine Power</option> <option value="88">Mariner</option> <option value="89">Maxus</option> <option value="90">Mazda</option> <option value="91">MDT</option> <option value="92">Mercedes Benz</option> <option value="93">MerCruiser</option> <option value="94">Mercury</option> <option value="95">Mercury Optimax</option> <option value="96">Mitsubishi</option> <option value="97">MLC</option> <option value="98">Monsoon</option> <option value="99">MTU</option> <option value="100">Mustang</option> <option value="101">MWM</option> <option value="102">Nani</option> <option value="103">Nanni</option> <option value="104">Niigata</option> <option value="105">Nissan</option> <option value="106">OMC</option> <option value="107">Onan</option> <option value="108">Osprey</option> <option value="109">Owens</option> <option value="110">Packard</option> <option value="111">Palmer</option> <option value="112">Parsun</option> <option value="113">Pathfinder</option> <option value="114">PCM</option> <option value="115">Penta</option> <option value="116">Perkins</option> <option value="117">Peugeot</option> <option value="118">Pisces</option> <option value="119">Pleasurecraft</option> <option value="120">Power Tec</option> <option value="121">Renault</option> <option value="122">Rolls Royce</option> <option value="123">Rotax</option> <option value="124">Rotax 4 TEC</option> <option value="125">Ruggerini</option> <option value="126">Ruston</option> <option value="127">Sabre</option> <option value="128">Scania</option> <option value="129">Seagull</option> <option value="130">SeaKing</option> <option value="131">Sole</option> <option value="132">Steyr</option> <option value="133">Superior</option> <option value="134">Suzuki</option> <option value="135">Tanaka</option> <option value="136">Thorncroft</option> <option value="137">Thornycraft</option> <option value="138">Tohatsu</option> <option value="139">Torqeedo</option> <option value="140">Toyota</option> <option value="141">Twin Disc</option> <option value="142">Universal</option> <option value="143">Vanguard</option> <option value="144">Vetus</option> <option value="145">Volkswagen</option> <option value="146" selected>Volvo</option> <option value="147">Volvo IPS</option> <option value="148">Volvo Penta</option> <option value="149">Vortex</option> <option value="150">Weber</option> <option value="151">Westerbeke</option> <option value="152">Wickman</option> <option value="153">WM Diesel</option> <option value="154">Yachtmaster</option> <option value="155">Yamaha</option> <option value="156">Yanmar</option> <option value="157">Zodiac</option>
</select>
<input id="input-EngineMake" type="hidden" name="EngineMake" value="Volvo">
</div>
</div>
</div>
<div class="col-xs-1 col-md-1">
<button type="button" class="pull-right btn btn-default popover-dismiss" title="Engine Make" data-content="Choose your Engine Make from the list provided." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div> <div class="row ">
<label for="input-Engine" class="control-label col-xs-12 col-md-2">Engine Description</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<textarea type="text" class="form-control" name="Engine" id="input-Engine" placeholder="" rows="2" maxlength="2000">Twin Volvo 8.1 V8 MPI</textarea>
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Engine Description" data-content="Enter engine information like diesel/petrol, horsepower/KW, number of cylinders, consumption/hr, condition etc.<br><br>Example: Perkins Diesel, 42hp, rebuilt in 2001" tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row ">
<label for="input-NumberEngines" class="control-label col-xs-12 col-md-2">Number of Engines</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control " name="NumberEngines" id="input-NumberEngines" placeholder="" value="2" maxlength="1">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Number of Engines" data-content="Total number of engines" tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row ">
<label for="input-EngineHours" class="control-label col-xs-12 col-md-2">Engine Hours</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control " name="EngineHours" id="input-EngineHours" placeholder="" value="" maxlength="100">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Engine Hours" data-content="Engine hours since new or reconditioned." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row ">
<label for="input-EngineHours2" class="control-label col-xs-12 col-md-2">Second Engine Hours</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control " name="EngineHours2" id="input-EngineHours2" placeholder="" value="" maxlength="100">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Second Engine Hours" data-content="If second engine, engine hours since new or reconditioned." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row ">
<label for="input-HorsePower" class="control-label col-xs-12 col-md-2">Horsepower</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control " name="HorsePower" id="input-HorsePower" placeholder="" value="375" maxlength="100">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Horsepower" data-content="As published by manufacturer.<br><br>Example: 150hp" tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row ">
<label for="input-FuelCapacity" class="control-label col-xs-12 col-md-2">Fuel Capacity</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control " name="FuelCapacity" id="input-FuelCapacity" placeholder="" value="1200 Litres" maxlength="100">
<div class="input-group-btn">
<button type="button" class="btn btn-default popover-dismiss" title="Fuel Capacity" data-content="Enter total of fuel carrying capacity in litres or gallons and/or fuel tank material and configuration.<br><br>Example: 800 litres in 3 stainless steel tanks." tabindex="-1" data-toggle="popover" data-container="body" data-trigger="hover" data-placement="left" data-html="true">?</button>
</div>
</div>
</div>
</div> <div class="row ">
<label for="input-FuelConsumption" class="control-label col-xs-12 col-md-2">Fuel Consumption</label>
<div class="col-xs-12 col-md-10">
<div class="input-group">
<input type="text" class="form-control " name="FuelConsumption" id="input-FuelConsumption" placeholder="" value="" maxlength="100">
<div class="input-group-btn">