Problems automating inVBA

C

Cliff

I'm attempting to automate input to an ASP/AJAX web-page using VBA, however,
I've encountered a couple of problems:

1) when selecting from dropdown A manuallly, dropdown B is populated with a
series of options depending on the option selected in drropdown A. While I
can select from dropdown A in VBA, dropdown B never gets updated. Prsumably
I need to trigger some event on the page, but how do I accomplish this in
VBA?

2) clicking a button creates an "on the fly" dropdown depending on the
contents of a textbox. How do I access this dropdown and select an option?

Apologies if these questions seem naive and beginnerish, but I'm working
well outside my comfort zone.


Cliff.
 
M

Mark Rae [MVP]

I'm attempting to automate input to an ASP/AJAX web-page using VBA

Please clarify which software you are using:

ASP or ASP.NET (AJAX works only in ASP.NET, not ASP)
VBA is Visual Basic for Applications, the programming language which comes
with Microsoft Office, not ASP or ASP.NET
 
C

Cliff

Apologies for the lack of clarity, as I said, while I've got a fair bit of
experience using VBA to automate Excel, this project is at the limits of my
knowledge and experience.

I'm using VBA to populate the fields on a web-page from data held in Excel
using the Internet Explorer object via GetElementById. I think frm the
research I've been able to make, the page itself was developed iusing
ASP.NET. I hope this helps.

Thank you for taking the time and trouble to reply.


Cliff.
 
M

Mark Rae [MVP]

Apologies for the lack of clarity, as I said, while I've got a fair bit of
experience using VBA to automate Excel, this project is at the limits of
my knowledge and experience.

Hmm - OK...
I'm using VBA to populate the fields on a web-page from data held in Excel
using the Internet Explorer object via GetElementById. I think frm the
research I've been able to make, the page itself was developed iusing
ASP.NET. I hope this helps.

Please post your code...
 
C

Cliff

Relevant part of VBA Code:

Private Sub StartQuote(HTMLDoc As HTMLDocument, oIE As InternetExplorer,
currentProfile As Profile)

Dim oInputElement As HTMLInputElement
Dim oSelectElement As HTMLSelectElement
Dim oBaseElement As HTMLBaseElement
Dim oElement As HTMLFormElement


Set HTMLDoc = oIE.document

Set oInputElement = HTMLDoc.getElementById("addressLookup_txtPostcode")
oInputElement.value = currentProfile.PostCode

Set oInputElement = HTMLDoc.getElementById("addressLookup_btnLookup")
oInputElement.Click

' This click results in a dropdown appearing, from which I want to select an
option


'Wait for page to load
If Not WaitUntilWebPageLoads(oIE) Then
Err.Raise vbObjectError + 513, "WaitUntilWebPageLoads", "User Defined
Error - Web page loading error"
End If


'Property Type
Set oSelectElement = HTMLDoc.getElementById("cdlPropertyType")
oSelectElement.value = currentProfile.PropertyType

' Changing this should result in dropdown Property description being
activated and populated with appropriate values.

Web Page:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en">
<head>
<title>
Compare buildings and contents home insurance quotes | moneysupermarket UK
</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="language" content="en-gb" />
<meta name="document-type" content="Public" />
<meta name="document-rating" content="General" />
<meta name="description" content="One search to compare buildings and
contents home insurance quotes from over 60 insurance companies..." />
<meta name="keywords" content="home insurance" />

<link id="msfgBaseCss" type="text/css" rel="stylesheet"
href="/framework/css/msfg-base.css" />
<link id="msfgDefaultTemplateCss" type="text/css" rel="stylesheet"
href="/framework/css/msfg-default-template.css" />
<link id="msfgContentCss" type="text/css" rel="stylesheet"
href="/framework/css/msfg-content.css" />
<link id="msfgSectionCss" type="text/css" rel="stylesheet"
href="/framework/css/msfg-insurance.css" />

<!--[if lt IE 7]>
<link id="msfgIECss" type="text/css" rel="stylesheet"
href="/framework/css/msfg-ie.css" />
<![endif]-->
<!--[if IE 7]>
<link id="msfgIE7Css" type="text/css" rel="stylesheet"
href="/framework/css/msfg-ie7.css" />
<![endif]-->

<span id="ValidationHighlighter1"></span>
<script type="text/javascript" src="js/msfg-homeinsurance.js"></script>
<script type="text/javascript"
src="js/msfg-homeinsurance-quoterequest1.js"></script>

<script id="scriptCommon" type="text/javascript"
src="/framework/js/Common.js"></script>
<script id="prototypeScript" type="text/javascript"
src="/framework/js/us/prototype.js"></script>
<script id="scriptaculousScript" type="text/javascript"
src="/framework/js/us/scriptaculous.js"></script>
</head>
<body>

<!-- Global Id Start -->

<!-- Global Id End -->


<div id="msfgContainer" class="msfg-container msfg-page-1-quoterequest1">


<div id="adbanner">
<iframe
src="/framework/pages/doubleclickcontainer.aspx?keywords=&amp;placement=HOMEINSBANSEC&amp;format=banner&amp;sitename=Insuresupermarket.com"
width="468" height="60" scrolling="no" frameborder="0">

</iframe>
</div>
<div id="divSiteLogo">
<a id="banner_lnkSiteLogo" href="http://www.moneysupermarket.com"><img
id="banner_imgSiteLogo" src="/framework/images/logos/ms-logo.gif"
alt="Moneysupermarket.com" style="border-width:0px;" /></a>
</div>




<ul class="msfg-navigationbar">
<li>
<a class="msfg-navigationbar-item-home msfg-navigationmenu-firstitem"
href="http://www.moneysupermarket.com/">Home</a>
</li>
<li>
<a class="msfg-navigationbar-item-money"
href="http://www.moneysupermarket.com/money/">Money</a>
</li>
<li>
<a class="msfg-navigationbar-item-insurance
msfg-navigationmenu-selecteditem"
href="http://www.moneysupermarket.com/insurance/">Insurance</a>
</li>
<li>
<a class="msfg-navigationbar-item-travel"
href="http://www.travelsupermarket.com/link.asp?Section=home&amp;Source=MS">Travel</a>
</li>
<li>
<a class="msfg-navigationbar-item-motoring"
href="http://www.moneysupermarket.com/motoring/">Motoring</a>
</li>
<li>
<a class="msfg-navigationbar-item-utilities"
href="http://www.moneysupermarket.com/utilities/cheaper-gas-electricity.aspx">Gas
&amp;<br />Electricity</a>
</li>
<li>
<a class="msfg-navigationbar-item-mobiles"
href="http://www.moneysupermarket.com/MobilePhones/default.aspx">Mobile<br
/>Phones</a>
</li>
<li>
<a class="msfg-navigationbar-item-shopping"
href="http://www.moneysupermarket.com/shopping-default.asp">Shopping</a>
</li>
<li>
<a class="msfg-navigationbar-item-broadband"
href="http://www.moneysupermarket.com/broadband/">Broadband</a>
</li>
<li>
<a class="msfg-navigationbar-item-forums msfg-navigationmenu-lastitem"
href="http://www.moneysupermarket.com/forums-default.asp">Communities<br />
&amp; Forums</a>
</li>

</ul>
<ul class="msfg-subnavigationbar msfg-navigationbar-item-insurance">
<li>
<a class="msfg-navigationmenu-firstitem"
href="http://www.moneysupermarket.com/motor/">Car</a>
</li>
<li>
<a class="msfg-navigationmenu-selecteditem"
href="http://www.moneysupermarket.com/home/">Home</a>
</li>
<li>
<a
href="http://www.moneysupermarket.com/lifeinsurance/uk-life-insurance.aspx">Life</a>
</li>
<li>
<a href="http://www.moneysupermarket.com/travelinsurance/">Travel</a>
</li>
<li>
<a href="http://www.moneysupermarket.com/petinsurance/">Pet</a>
</li>
<li>
<a href="http://www.moneysupermarket.com/bike/">Bike</a>
</li>
<li>
<a href="http://www.moneysupermarket.com/van/">Van</a>
</li>
<li>
<a href="http://www.moneysupermarket.com/landlord-insurance/">Landlord</a>
</li>
<li>
<a
href="http://www.moneysupermarket.com/asu/IncomeProtectionDefault.asp">Income</a>
</li>
<li>
<a href="http://www.moneysupermarket.com/medical/">Medical</a>
</li>
<li>
<a href="http://www.moneysupermarket.com/roadsiderescue/">Breakdown</a>
</li>
<li>
<a href="http://www.moneysupermarket.com/dentalinsurance/">Dental</a>
</li>
<li>
<a href="http://www.moneysupermarket.com/business-insurance/">Business</a>
</li>
<li>
<a
href="http://www.moneysupermarket.com/asu/MortgageProtectionDefault.asp">Mortgage</a>
</li>
<li>
<a class="msfg-navigationbar-item-heating-cover
msfg-navigationmenu-lastitem"
href="http://www.moneysupermarket.com/heating-cover/">heating</a>
</li>

</ul>

<br style="clear: both;" />

<!--
HACK:
TravelMerge code relies on these links. Because of their release schedules
these dummies
exist so that their code can run. Once they can release a new version with
the required
changes, these dummies can be removed.
-->






<div id="msfg-maincontent">
<form name="mainForm" method="post" action="quoterequest1.aspx"
onsubmit="javascript:return WebForm_OnSubmit();" id="mainForm">
<div>
<input type="hidden" name="cdlPropertyType_ClientState"
id="cdlPropertyType_ClientState"
value="{&quot;SelectedValue&quot;:&quot;&quot;}" />
<input type="hidden" name="cdlPropertyDescription_ClientState"
id="cdlPropertyDescription_ClientState"
value="{&quot;SelectedValue&quot;:&quot;&quot;}" />
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE"
value="/wEPDwUKLTU1MzM0OTI2Nw8WAh4HcXVlcnlpZCgpWVN5c3RlbS5JbnQ2NCwgbXNjb3JsaWIsIFZlcnNpb249Mi4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5BzI4MTU5NzQWAmYPZBYeAgIPZBYEAgIPFgIeB2NvbnRlbnQFZk9uZSBzZWFyY2ggdG8gY29tcGFyZSBidWlsZGluZ3MgYW5kIGNvbnRlbnRzIGhvbWUgaW5zdXJhbmNlIHF1b3RlcyBmcm9tIG92ZXIgNjAgaW5zdXJhbmNlIGNvbXBhbmllcy4uLmQCBA8WAh8BBQ5ob21lIGluc3VyYW5jZWQCBg8WAh4EaHJlZgUcL2ZyYW1ld29yay9jc3MvbXNmZy1iYXNlLmNzc2QCCA8WAh8CBSgvZnJhbWV3b3JrL2Nzcy9tc2ZnLWRlZmF1bHQtdGVtcGxhdGUuY3NzZAIKDxYCHwIFHy9mcmFtZXdvcmsvY3NzL21zZmctY29udGVudC5jc3NkAgwPFgIfAgUhL2ZyYW1ld29yay9jc3MvbXNmZy1pbnN1cmFuY2UuY3NzZAIODxYCHgdWaXNpYmxlaGQCEA8WAh8CBRovZnJhbWV3b3JrL2Nzcy9tc2ZnLWllLmNzc2QCEg8WAh8CBRsvZnJhbWV3b3JrL2Nzcy9tc2ZnLWllNy5jc3NkAhQPZBYCAgEPMu4EAAEAAAD/////AQAAAAAAAAAMAgAAAFVNc2ZnLkZ3ay5XZWJGcmFtZXdvcmsuQ29udHJvbHMsIFZlcnNpb249Mi4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1udWxsBQEAAADyAU1zZmcuRndrLldlYkZyYW1ld29yay5Db250cm9scy5Db250cm9sSGVscGVyYDErQ29udHJvbEhlbHBlclZpZXdTdGF0ZVtbTXNmZy5Gd2suV2ViRnJhbWV3b3JrLkNvbnRyb2xzLlZhbGlkYXRpb25IaWdobGlnaHRlcitWYWxpZGF0aW9uSGlnaGxpZ2hlclZpZXdTdGF0ZSwgTXNmZy5Gd2suV2ViRnJhbWV3b3JrLkNvbnRyb2xzLCBWZXJzaW9uPTIuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49bnVsbF1dAgAAAA5fYmFzZVZpZXdTdGF0ZRFfY29udHJvbFZpZXdTdGF0ZQIEUk1zZmcuRndrLldlYkZyYW1ld29yay5Db250cm9scy5WYWxpZGF0aW9uSGlnaGxpZ2h0ZXIrVmFsaWRhdGlvbkhpZ2hsaWdoZXJWaWV3U3RhdGUCAAAAAgAAAAoF/f///1JNc2ZnLkZ3ay5XZWJGcmFtZXdvcmsuQ29udHJvbHMuVmFsaWRhdGlvbkhpZ2hsaWdodGVyK1ZhbGlkYXRpb25IaWdobGlnaGVyVmlld1N0YXRlAQAAABBfdmFsaWRhdGlvbkdyb3VwAQIAAAAGBAAAAA1BZGRyZXNzTG9va3VwC2QCFg8WAh4Dc3JjBRcvZnJhbWV3b3JrL2pzL0NvbW1vbi5qc2QCGA8WAh8EBR0vZnJhbWV3b3JrL2pzL3VzL3Byb3RvdHlwZS5qc2QCGg8WAh8EBSEvZnJhbWV3b3JrL2pzL3VzL3NjcmlwdGFjdWxvdXMuanNkAiAPFgIeBWNsYXNzBShtc2ZnLWNvbnRhaW5lciBtc2ZnLXBhZ2UtMS1xdW90ZXJlcXVlc3QxFgoCAQ9kFgJmD2QWAgIBD2QWAgIEDw8WAh4LTmF2aWdhdGVVcmwFH2h0dHA6Ly93d3cubW9uZXlzdXBlcm1hcmtldC5jb21kFgJmDw8WBB4NQWx0ZXJuYXRlVGV4dAUUTW9uZXlzdXBlcm1hcmtldC5jb20eCEltYWdlVXJsBSMvZnJhbWV3b3JrL2ltYWdlcy9sb2dvcy9tcy1sb2dvLmdpZmRkAgMPZBYCZg9kFgICAQ9kFgJmD2QWBGYPFgIeC18hSXRlbUNvdW50AgpkAgEPFgIfCQIPZAIFD2QWBgIBDxYCHwNnZAIDDxYCHwNoFgICAQ9kFgJmD2QWAgIBD2QWAgIFDxYCHwNnZAIFDxYCHwUFGW1zZmctY29sLWNlbnRyZS1ub2xlZnRjb2wWAgIBD2QWDAIEDzKxBAABAAAA/////wEAAAAAAAAADAIAAABVTXNmZy5Gd2suV2ViRnJhbWV3b3JrLkNvbnRyb2xzLCBWZXJzaW9uPTIuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49bnVsbAUBAAAA4wFNc2ZnLkZ3ay5XZWJGcmFtZXdvcmsuQ29udHJvbHMuQ29udHJvbEhlbHBlcmAxK0NvbnRyb2xIZWxwZXJWaWV3U3RhdGVbW01zZmcuRndrLldlYkZyYW1ld29yay5Db250cm9scy5TdGVwSW5kaWNhdG9yK1N0ZXBJbmRpY2F0b3JWaWV3U3RhdGUsIE1zZmcuRndrLldlYkZyYW1ld29yay5Db250cm9scywgVmVyc2lvbj0yLjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPW51bGxdXQIAAAAOX2Jhc2VWaWV3U3RhdGURX2NvbnRyb2xWaWV3U3RhdGUCBENNc2ZnLkZ3ay5XZWJGcmFtZXdvcmsuQ29udHJvbHMuU3RlcEluZGljYXRvcitTdGVwSW5kaWNhdG9yVmlld1N0YXRlAgAAAAIAAAAKBf3///9DTXNmZy5Gd2suV2ViRnJhbWV3b3JrLkNvbnRyb2xzLlN0ZXBJbmRpY2F0b3IrU3RlcEluZGljYXRvclZpZXdTdGF0ZQEAAAAOX3NlbGVjdGVkSW5kZXgACAIAAAAAAAAAC2QCCg9kFhZmD2QWBGYPZBYCZg9kFgZmD2QWAmYPZBYCZg8PFgQeBFRleHRlHghSZWFkT25seWgWAh4Kb25rZXlwcmVzcwUeTXNmZyRTdW1iaXRGb3JtRW50ZXIoZXZlbnQsJycpFghmDw8WAh4SRW5hYmxlQ2xpZW50U2NyaXB0aGRkAgEPDxYCHwgFMy9pbWFnZXMvY2hhbm5lbC9ob21laW5zdXJhbmNlL2ZpbmRfYWRkcmVzcy1ob21lLnBuZ2RkAgIPDxYCHgxFcnJvck1lc3NhZ2UFN1BsZWFzZSBzcGVjaWZ5IGEgdmFsaWQgcG9zdGNvZGUgYW5kIGNsaWNrIGZpbmQgYWRkcmVzcy5kZAIDDw8WAh8OBTdQbGVhc2Ugc3BlY2lmeSBhIHZhbGlkIHBvc3Rjb2RlIGFuZCBjbGljayBmaW5kIGFkZHJlc3MuZGQCAQ9kFgJmD2QWAmYPEA8WAh4EUm93cwIFZGQWAGQCAw8WAh4FdmFsdWUFBWZhbHNlZAIBDw8WAh8OBTdQbGVhc2Ugc3BlY2lmeSBhIHZhbGlkIHBvc3Rjb2RlIGFuZCBjbGljayBmaW5kIGFkZHJlc3MuZGQCAQ9kFgJmD2QWAmYPEGRkFgAWAmYPDxYCHw4FHlBsZWFzZSBzZWxlY3QgYSBwcm9wZXJ0eSB0eXBlLmRkAgIPZBYCZg9kFgJmDxAPFgYeDURhdGFUZXh0RmllbGQFFUZsYXRGbG9vcnNEZXNjcmlwdGlvbh4ORGF0YVZhbHVlRmllbGQFDEZsYXRGbG9vcnNJRB4LXyFEYXRhQm91bmRnZBAVNgMtLS0BQgFHAU0BMQEyATMBNAE1ATYBNwE4ATkCMTACMTECMTICMTMCMTQCMTUCMTYCMTcCMTgCMTkCMjACMjECMjICMjMCMjQCMjUCMjYCMjcCMjgCMjkCMzACMzECMzICMzMCMzQCMzUCMzYCMzcCMzgCMzkCNDACNDECNDICNDMCNDQCNDUCNDYCNDcCNDgCNDkCNTAVNgABQgFHAU0BMQEyATMBNAE1ATYBNwE4ATkCMTACMTECMTICMTMCMTQCMTUCMTYCMTcCMTgCMTkCMjACMjECMjICMjMCMjQCMjUCMjYCMjcCMjgCMjkCMzACMzECMzICMzMCMzQCMzUCMzYCMzcCMzgCMzkCNDACNDECNDICNDMCNDQCNDUCNDYCNDcCNDgCNDkCNTAUKwM2Z2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnFgFmFgJmDw8WBB8OBR1QbGVhc2Ugc2VsZWN0IHRoZSBmbGF0IGZsb29yLh4HRW5hYmxlZGhkZAIDD2QWAmYPZBYCZg8QZGQWABYCZg8PFgIfDgUlUGxlYXNlIHNlbGVjdCBhIHByb3BlcnR5IGRlc2NyaXB0aW9uLmRkAgQPZBYCZg9kFgJmDw8WBB4IX21heGltdW0C2A8fCmUWBB4Gb25ibHVyBSNNc2ZnJG51bWVyaWNGaWVsZENsZWFuU3RyaW5nKHRoaXMpOx8MBR5Nc2ZnJFN1bWJpdEZvcm1FbnRlcihldmVudCwnJykWBmYPDxYCHw4FPlBsZWFzZSBzcGVjaWZ5IGEgdmFsaWQgeWVhciBiZXR3ZWVuIDE2MDAgYW5kIHRoZSBjdXJyZW50IHllYXIuZGQCAQ8PFgYfDgU+UGxlYXNlIHNwZWNpZnkgYSB2YWxpZCB5ZWFyIGJldHdlZW4gMTYwMCBhbmQgdGhlIGN1cnJlbnQgeWVhci4eDE1heGltdW1WYWx1ZQUEMjAwOB4MTWluaW11bVZhbHVlBQQxNjAwZGQCAg8PFgIfDgU+UGxlYXNlIHNwZWNpZnkgYSB2YWxpZCB5ZWFyIGJldHdlZW4gMTYwMCBhbmQgdGhlIGN1cnJlbnQgeWVhci5kZAIFD2QWAmYPZBYCZg8QDxYGHxEFFFJvb2ZDb25zdHJ1Y3Rpb25EZXNjHxIFElJvb2ZDb25zdHJ1Y3Rpb25JRB8TZ2QQFQwMLS0gU2VsZWN0IC0tBFRpbGUFU2xhdGUIQ29uY3JldGUHQXNwaGFsdA5GZWx0IG9uIHRpbWJlcg9Db3JydWdhdGVkIGlyb24GVGhhdGNoBlRpbWJlcgdTaGluZ2xlBUdsYXNzBU90aGVyFQwAATABMQEyATMBNAE1ATYBNwE4ATkCMTAUKwMMZ2dnZ2dnZ2dnZ2dnFgFmFgJmDw8WAh8OBS9QbGVhc2Ugc2VsZWN0IHRoZSBwcm9wZXJ0eSdzIHJvb2YgY29uc3RydWN0aW9uLmRkAgYPZBYCZg9kFgJmDxAPFgYfEQUUV2FsbENvbnN0cnVjdGlvbkRlc2MfEgUSV2FsbENvbnN0cnVjdGlvbklEHxNnZBAVDQwtLSBTZWxlY3QgLS0FQnJpY2sFU3RvbmUIQ29uY3JldGUdVGltYmVyIGZyYW1lIHdpdGggYnJpY2sgd2FsbHMgVGltYmVyIGZyYW1lIHdpdGggcGxhc3RlciBwYW5lbHMGVGltYmVyH1ByZWZhYnJpY2F0ZWQgLSBub24tY29tYnVzdGlibGUbUHJlZmFicmljYXRlZCAtIGNvbWJ1c3RpYmxlBUZsaW50BUdsYXNzD0NvcnJ1Z2F0ZWQgaXJvbgVPdGhlchUNAAEwATEBMgEzATQBNQE2ATcBOAE5AjEwAjExFCsDDWdnZ2dnZ2dnZ2dnZ2cWAWYWAmYPDxYCHw4FOFBsZWFzZSBzZWxlY3QgdGhlIHByb3BlcnR5J3MgZXh0ZXJuYWwgd2FsbCBjb25zdHJ1Y3Rpb24uZGQCBw9kFgJmD2QWAmYPEGRkFgFmFgJmDw8WAh8OBTVQbGVhc2Ugc2VsZWN0IHRoZSBudW1iZXIgb2YgYmVkcm9vbXMgaW4gdGhlIHByb3BlcnR5LmRkAggPZBYCZg9kFgJmDxAPFgQeCENzc0NsYXNzBRUgbXNmZy1yYWRpb2J1dHRvbmxpc3QeBF8hU0ICAmRkFgAWAmYPDxYCHw4FX1BsZWFzZSBzdGF0ZSBpZiB0aGUgcHJvcGVydHkgb3Igc3Vycm91bmRpbmcgYXJlYSBldmVyIHN1ZmZlcmVkIGZyb20gZ3JvdW5kIG1vdmVtZW50L3N1YnNpZGVuY2UuZGQCCQ9kFgJmD2QWAmYPEA8WBh8RBRJGbG9vZGluZ0ltcGFjdERlc2MfEgUQRmxvb2RpbmdJbXBhY3RJRB8TZ2QQFQUMLS0gU2VsZWN0IC0tAk5vFlN1ZmZlcmVkIGZsb29kaW5nIG9ubHkUV2l0aGluIDQwMG0gb2Ygd2F0ZXIqU3VmZmVyZWQgZmxvb2RpbmcgYW5kIHdpdGhpbiA0MDBtIG9mIHdhdGVyFQUAATABMQEyATMUKwMFZ2dnZ2cWAWYWAmYPDxYCHw4FX1BsZWFzZSBzZWxlY3QgaWYgdGhlIHByb3BlcnR5IGhhcyBldmVyIHN1ZmZlcmVkIGZyb20gZmxvb2Rpbmcgb3IgaWYgaXQgaXMgd2l0aGluIDQwMG0gb2Ygd2F0ZXIuZGQCCg9kFgJmD2QWAmYPEA8WBh8RBQ9TbW9rZUFsYXJtc0Rlc2MfEgUNU21va2VBbGFybXNJRB8TZ2QQFQUMLS0gU2VsZWN0IC0tATABMQEyAjMrFQUAATABMQEyATMUKwMFZ2dnZ2cWAWYWAmYPDxYCHw4FQ1BsZWFzZSBzZWxlY3QgdGhlIG51bWJlciBvZiBzbW9rZSBhbGFybXMgaW5zdGFsbGVkIGF0IHRoZSBwcm9wZXJ0eS5kZAIMD2QWDGYPZBYCZg9kFgJmDxAPFgYfEQUgTmVpZ2hib3VyaG9vZFdhdGNoQXJlYVN0YXR1c0Rlc2MfEgUeTmVpZ2hib3VyaG9vZFdhdGNoQXJlYVN0YXR1c0lEHxNnZBAVAwJObxNZZXMgKGFjdGl2ZSBtZW1iZXIpGlllcyAobm90IGFuIGFjdGl2ZSBtZW1iZXIpFQMBMgEwATEUKwMDZ2dnFgFmFgJmDw8WAh8OBThQbGVhc2Ugc2VsZWN0IGlmIHlvdSBsaXZlIGluIGEgTmVpZ2hib3VyaG9vZCBXYXRjaCBhcmVhLmRkAgEPZBYCZg9kFgJmDxAPFgYfEQUXQnVyZ2xhckFsYXJtRGVzY3JpcHRpb24fEgUOQnVyZ2xhckFsYXJtSUQfE2dkEBUEDC0tIFNlbGVjdCAtLQ9OQUNPU1MgYXBwcm92ZWQST3RoZXIgYWxhcm0gc3lzdGVtBE5vbmUVBAABMQEyATMUKwMEZ2dnZxYBZhYCZg8PFgIfDgU3UGxlYXNlIHNlbGVjdCB0aGUgYnVyZ2xhciBhbGFybSBzeXN0ZW0gaW4gdGhlIHByb3BlcnR5LmRkAgIPZBYCZg9kFgJmDxAPFgQfGQUVIG1zZmctcmFkaW9idXR0b25saXN0HxoCAmRkFgAWAmYPDxYCHw4FVVBsZWFzZSBzdGF0ZSBpZiBhbGwgZXh0ZXJuYWxseSBhY2Nlc3NpYmxlIHdpbmRvd3MgYXJlIGZpdHRlZCB3aXRoIGtleSBvcGVyYXRlZCBsb2Nrcy5kZAIDD2QWAmYPDxYCHwNnZBYCZg8QDxYGHxEFFE1haW5Eb29yTG9ja1R5cGVEZXNjHxIFEk1haW5Eb29yTG9ja1R5cGVJRB8TZ2QQFQQMLS0gU2VsZWN0IC0tLE1vcnRpY2UgZGVhZGxvY2sgd2l0aCBtaW4gNSBsZXZlcnMgdG8gQlMzNjIxNk11bHRpIHBvaW50IGxvY2sgc3lzdGVtIC0gbWluIDMgYm9sdHMgKGUuZy4gVVBWQyBkb29yKQpPdGhlciBsb2NrFQQAATABMQEyFCsDBGdnZ2cWAWYWAmYPDxYCHw4FNVBsZWFzZSBzZWxlY3QgdGhlIGxvY2tzIGZpdHRlZCB0byBtYWluIGV4dGVybmFsIGRvb3IuZGQCBA9kFgJmDw8WAh8DZ2QWAmYPEA8WBh8RBRtQYXRpb0ZyZW5jaERvb3JMb2NrVHlwZURlc2MfEgUZUGF0aW9GcmVuY2hEb29yTG9ja1R5cGVJRB8TZ2QQFQUMLS0gU2VsZWN0IC0tKU5vIGV4dGVybmFsIHBhdGlvL3NsaWRpbmcgb3IgRnJlbmNoIGRvb3JzLE1vcnRpY2UgZGVhZGxvY2sgd2l0aCBtaW4gNSBsZXZlcnMgdG8gQlMzNjIxNk11bHRpIHBvaW50IGxvY2sgc3lzdGVtIC0gbWluIDMgYm9sdHMgKGUuZy4gVVBWQyBkb29yKQtPdGhlciBsb2NrcxUFAAEwATEBMgEzFCsDBWdnZ2dnFgFmFgJmDw8WAh8OBUFQbGVhc2Ugc2VsZWN0IHRoZSBsb2NrcyBmaXR0ZWQgdG8gZXh0ZXJuYWwgcGF0aW8gb3IgRnJlbmNoIGRvb3JzLmRkAgUPZBYCZg8PFgIfA2dkFgJmDxAPFgYfEQUdT3RoZXJFeHRlcm5hbERvb3JMb2NrVHlwZURlc2MfEgUbT3RoZXJFeHRlcm5hbERvb3JMb2NrVHlwZUlEHxNnZBAVBQwtLSBTZWxlY3QgLS0XTm8gb3RoZXIgZXh0ZXJuYWwgZG9vcnMsTW9ydGljZSBkZWFkbG9jayB3aXRoIG1pbiA1IGxldmVycyB0byBCUzM2MjE2TXVsdGkgcG9pbnQgbG9jayBzeXN0ZW0gLSBtaW4gMyBib2x0cyAoZS5nLiBVUFZDIGRvb3IpC090aGVyIGxvY2tzFQUAATABMQEyATMUKwMFZ2dnZ2cWAWYWAmYPDxYCHw4FN1BsZWFzZSBzZWxlY3QgdGhlIGxvY2tzIGZpdHRlZCB0byBvdGhlciBleHRlcm5hbCBkb29ycy5kZAIOD2QWCmYPZBYCZg9kFgJmDxAPFgYfEQUSRGFpbHlPY2N1cGFuY3lEZXNjHxIFEERhaWx5T2NjdXBhbmN5SUQfE2cWAh4Ib25jaGFuZ2UFFkNoZWNrRGFpbHlPY2N1cGFuY3koKTsQFQUMLS0gU2VsZWN0IC0tF09jY3VwaWVkIGR1cmluZyB0aGUgZGF5E09jY3VwaWVkIG92ZXIgbmlnaHQWT2NjdXBpZWQgZGF5IGFuZCBuaWdodBZQZXJtYW5lbnRseSB1bm9jY3VwaWVkFQUAATABMQEyATMUKwMFZ2dnZ2cWAWYWAmYPDxYCHw4FHlBsZWFzZSBzZWxlY3QgZGFpbHkgb2NjdXBhbmN5LmRkAgEPZBYCZg9kFgJmDxAPFgYfEQUUVW5PY2N1cGllZFBlcmlvZERlc2MfEgUSVW5PY2N1cGllZFBlcmlvZElEHxNnZBAVBwwtLSBTZWxlY3QgLS0BMAQxLTE0BTE1LTMwBTMxLTQ1BTQ2LTYwAzYxKxUHAAEwATEBMgEzATQBNRQrAwdnZ2dnZ2dnFgFmFgJmDw8WBB8OBUlQbGVhc2Ugc2VsZWN0IHRoZSBudW1iZXIgb2YgY29uc2VjdXRpdmUgZGF5cyBwcm9wZXJ0eSBpcyBsZWZ0IHVub2NjdXBpZWQuHxRoZGQCAg9kFgJmD2QWAmYPEA8WBh8RBRpBZHVsdHNMaXZpbmdBdFByb3BlcnR5RGVzYx8SBRhBZHVsdHNMaXZpbmdBdFByb3BlcnR5SUQfE2dkEBUIDC0tIFNlbGVjdCAtLQEwATEBMgEzATQBNQI2KxUIAAEwATEBMgEzATQBNQMyNTUUKwMIZ2dnZ2dnZ2cWAWYWAmYPDxYEHw4FOlBsZWFzZSBzZWxlY3QgdGhlIG51bWJlciBvZiBhZHVsdHMgbGl2aW5nIGluIHRoZSBwcm9wZXJ0eS4fFGhkZAIDD2QWAmYPZBYCZg8QDxYGHxEFEENoaWxkRGVzY3JpcHRpb24fEgUMTm9PZkNoaWxkcmVuHxNnZBAVCAwtLSBTZWxlY3QgLS0BMAExATIBMwE0ATUCNisVCAABMAExATIBMwE0ATUDMjU1FCsDCGdnZ2dnZ2dnFgFmFgJmDw8WBB8OBTxQbGVhc2Ugc2VsZWN0IHRoZSBudW1iZXIgb2YgY2hpbGRyZW4gbGl2aW5nIGluIHRoZSBwcm9wZXJ0eS4fFGhkZAIED2QWAmYPZBYCZg8QDxYGHxEFFVByb3BlcnR5T3duZXJzaGlwRGVzYx8SBRNQcm9wZXJ0eU93bmVyc2hpcElEHxNnZBAVBQwtLSBTZWxlY3QgLS0OT3duZWQgb3V0cmlnaHQJTW9ydGdhZ2VkBlRlbmFudAhMYW5kbG9yZBUFAAEwATEBMgEzFCsDBWdnZ2dnFgFmFgJmDw8WAh8OBTNQbGVhc2Ugc2VsZWN0IHRoZSBvd25lcnNoaXAgc3RhdHVzIG9mIHRoZSBwcm9wZXJ0eS5kZAISDw8WAh8IBTQvaW1hZ2VzL2NoYW5uZWwvaG9tZWluc3VyYW5jZS9jb250aW51ZS1pbnN1cmFuY2UucG5nZGQCFA9kFgJmD2QWBgIBDxYCHwoFgAI8ZGl2IHN0eWxlPSdkaXNwbGF5OiBpbmxpbmU7IHdpZHRoOiAxMDRweDsgaGVpZ2h0OiA3MnB4OyBwYWRkaW5nLXJpZ2h0OiA1cHg7Jz4NCjxzY3JpcHQgc3JjPSdodHRwczovL3NlYWwudmVyaXNpZ24uY29tL2dldHNlYWw/aG9zdF9uYW1lPXd3dy5tb25leXN1cGVybWFya2V0LmNvbSZhbXA7c2l6ZT1TJmFtcDt1c2VfZmxhc2g9WUVTJmFtcDt1c2VfdHJhbnNwYXJlbnQ9WUVTJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0Pg0KPC9kaXY+ZAIDDw8WAh8GBV1odHRwczovL3NlYWwudmVyaXNpZ24uY29tL3NwbGFzaD9mb3JtX2ZpbGU9ZmRmL3NwbGFzaC5mZGYmZG49d3d3Lm1vbmV5c3VwZXJtYXJrZXQuY29tJmxhbmc9ZW5kZAIFDw8WAh8GBVhodHRwOi8vd3d3Lm1vbmV5c3VwZXJtYXJrZXQuY29tL2ZyYW1ld29yay9wYWdlcy9sZWdhbC9wcml2YWN5cG9saWN5LmFzcHg/cD0wJmNoYW5uZWxpZD0xZGQCCQ9kFgICAQ9kFgJmD2QWAgIBD2QWAmYPFgIfA2hkAgsPZBYCZg9kFgICAQ9kFgICBA8PFgIfA2dkFgQCAQ8WAh8FBTttc2ZnLW5hdmlnYXRpb25iYXItZm9vdGVyIG1zZmctbmF2aWdhdGlvbmJhci1pdGVtLWluc3VyYW5jZRYSAgIPDxYCHwYFKmh0dHA6Ly93d3cubW9uZXlzdXBlcm1hcmtldC5jb20vQ29udGFjdFVzL2RkAgYPDxYCHwYFJWh0dHA6Ly9jb3Jwb3JhdGUubW9uZXlzdXBlcm1hcmtldC5jb21kZAIKDw8WAh8GBSdodHRwOi8vd3d3Lm1vbmV5c3VwZXJtYXJrZXQuY29tL2F3YXJkcy9kZAIODw9kFgQeB29uY2xpY2sFZmFkZFRvRmF2cygnaHR0cDovL3d3dy5tb25leXN1cGVybWFya2V0LmNvbScsICdtb25leXN1cGVybWFya2V0LmNvbSAtIExvYW5zLCBNb3J0Z2FnZXMsIENyZWRpdCBDYXJkcycpOx8CBQEjZAISDw8WAh8GBSNodHRwOi8vd3d3Lm1vbmV5c3VwZXJtYXJrZXRqb2JzLmNvbWRkAhYPDxYCHwYFPWh0dHA6Ly93d3cubW9uZXlzdXBlcm1hcmtldC5jb20vbWVkaWFjZW50cmUvcHJlc3NyZWxlYXNlcy5hc3BkZAIaDw8WAh8GBS9odHRwOi8vd3d3Lm1vbmV5c3VwZXJtYXJrZXQuY29tL2xlZ2FsL3Rlcm1zLmFzcGRkAh4PDxYCHwYFKWh0dHA6Ly93d3cubW9uZXlzdXBlcm1hcmtldC5jb20vc2VjdXJpdHkvZGQCIg8PFgIfBgUwaHR0cDovL3d3dy5tb25leXN1cGVybWFya2V0LmNvbS9hZmZpbGlhdGVzY2hlbWUvZGQCAw8WAh8KBQQyMDA4ZAIiD2QWAmYPZBYCAgEPZBYEAgIPFgIfA2hkAgYPFgIfA2hkAiQPZBYCZg8WAh8DZxYCZg8WAh8KBXM8IS0tQkVHSU5fRVhDTFVERS0tPjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9mcmFtZXdvcmsvanMvcHJvcGhldGluc2VydC5qcyI+PC9zY3JpcHQ+PCEtLUVORF9FWENMVURFLS0+ZBgBBR5fX0NvbnRyb2xzUmVxdWlyZVBvc3RCYWNrS2V5X18WAgUXYWRkcmVzc0xvb2t1cCRidG5Mb29rdXAFCmJ0blByb2NlZWQ="
/>
</div>

<script type="text/javascript">
<!--
var theForm = document.forms['mainForm'];
if (!theForm) {
theForm = document.mainForm;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
// -->
</script>


<script
src="/WebResource.axd?d=KpahMniZRZZ6enWBwJ5LGA2&amp;t=633225933015755322"
type="text/javascript"></script>


<script
src="/WebResource.axd?d=68fPAkD2MsOJQLx8duEnnGhBDvJOhlFhlIrZmqkLQvP6sosduWX1nvnmkh5yc_k98OLwGDcrDeV3fiph_Lysu_tbwecNWJsNp6ddYr81_TY1&amp;t=633398243214822009"
type="text/javascript"></script>
<script
src="/ScriptResource.axd?d=RZtRUYzQbsMTccZB-34sFnEMB0c7sgrVWYHFbQ0cS5wLf0SFsu9Ghk_xfUbEMxwC7Xq7Ue_gmKn_uNlKBriOtg2&amp;t=633225933015755322"
type="text/javascript"></script><script type='text/javascript'
language='javascript'
src='/framework/js/popupcustomcontrols.js?build=v2_0_0'></script>
<script
src="/ScriptResource.axd?d=uW8kCDQ1TiANssm1j71xF_DZ8GZy1OMTB5g0Q_Mh2vGcv5U0Fk7JuZyPc4lpwz2RRlwkYxlMg07hQ89hrmYXAzzd6KJvNck2gmFON9iiBOU1&amp;t=633076152160130000"
type="text/javascript"></script>
<script
src="/ScriptResource.axd?d=uW8kCDQ1TiANssm1j71xF_DZ8GZy1OMTB5g0Q_Mh2vGcv5U0Fk7JuZyPc4lpwz2RRlwkYxlMg07hQ89hrmYXA0-uoA_xxljHQn5W7KEbuwg1&amp;t=633076152160130000"
type="text/javascript"></script>
<script
src="/ScriptResource.axd?d=5StJ1WVSLTgTLNy8pl8m_ZTTEfbM3z6NjrvMzzPai8DTckhGpohdYfl0u-UTytxSKL9hgUgSA0Yb685phoRDoqD7hxELuPsNlB3tmJLBWh257FgdyC-pGt6KAJmYpibd0&amp;t=633398243214822009"
type="text/javascript"></script>
<script type="text/javascript">
<!--
function WebForm_OnSubmit() {
if (typeof(ValidatorOnSubmit) == "function" && ValidatorOnSubmit() == false)
return false;
return true;
}
// -->
</script>





<div id="msfgColCentre" class="msfg-col-centre-noleftcol">
<div id="frmMain">


<script type="text/javascript">
//<![CDATA[
Sys.WebForms.PageRequestManager._initialize('ctl00',
document.getElementById('mainForm'));
Sys.WebForms.PageRequestManager.getInstance()._updateControls(['taddressLookup$AddressLookupUpdatePanel'],
[], [], 90);
//]]>
</script>


<h1 class="msfg-noborder">Home Insurance</h1>
<ol id="siStepIndicator" class="msfg-stepindicator">
<li class="msfg-stepindicator-1
msfg-stepindicator-active"><p><strong>Property Details</strong></p></li><li
class="msfg-stepindicator-2"><p>Applicant Details</p></li><li
class="msfg-stepindicator-3"><p>Cover Details</p></li><li
class="msfg-stepindicator-4"><p>Results</p></li>
</ol>


<noscript>
<table id="nojsmessage" cellSpacing="0" cellPadding="10" width="100%"
border="0">
<tr>
<td class="bodytext">
<p>
<b><span style="color:red;">IMPORTANT</span> - We have detected that
you have JavaScript disabled<span style="display:none;">
or are using a browser that does not support it</span>. Our site uses
JavaScript in order to function correctly.
<br>
<br>
In order to continue<span style="display:none;"> without
problems</span> you
will need to enable JavaScript and refresh the page<span
style="display:none;">, or
upgrade your browser</span>.
<br>
<br>
</b>
</p>
</td>
</tr>
</table>
</noscript>


<div>
<div id="errorSummary" class="msfg-infobox msfg-infobox-warning"
style="color:Red;display:none;">

</div>
</div>

<h2 class="msfg-questiongroupheading">Property Details</h2>
<fieldset class="msfg-questiongroup">
<fieldset class="">
<div class="msfg-addresslookup" id="addressLookup">
<div id="addressLookup_AddressLookupUpdatePanel">
<div id="addressLookup_ctl02" class="">
<label for="addressLookup_txtPostcode">Postcode</label><input
name="addressLookup$txtPostcode" type="text" maxlength="8"
id="addressLookup_txtPostcode" onblur="Msfg$cleanString(this)"
onkeypress="Msfg$SumbitFormEnter(event,'')" /><input type="image"
name="addressLookup$btnLookup" id="addressLookup_btnLookup" title="Find Your
Address" class="button"
src="/images/channel/homeinsurance/find_address-home.png" alt="Find Address"
onclick="Msfg$updateHiddenField('addressLookup_AddressSelected', false);"
style="border-width:0px;" />&nbsp;<em>*</em>
</div><input type="hidden" id="addressLookup_AddressSelected"
value="false"></input><div id="addressLookup_udpProgress"
style="display:none;">
<p class="msfg-addresslookup-progresspanel">Loading please wait...</p>
</div>
</div><span id="addressLookup_valCustomAddressRequired"
style="color:Red;display:none;"></span>
</div><div id="ctl03" class="">
<label for="cdlPropertyType">Property type</label><select
name="cdlPropertyType" id="cdlPropertyType">

</select><span id="ValRequiredDropDownListForCdlPropertyType"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>&nbsp;<img
src="/framework/img/icon/help_16.png" id="ctl39_HelpIcon" alt="Help"
title="Property type" class="msfg-helpimg" style="visibility: visible;
cursor: pointer;"
onclick="Msfg$toggleHelp('ctl39_HelpLayer','ctl39_HelpIcon');" /><div
id="ctl39_HelpLayer" class="msfg-helplayer" style="display: none; z-index:
2; opacity: 0.999999;"><p><strong>Property type</strong></p><p>First select
the type of property to be insured, then select the description of the
property.</p><p><a href="javascript:void(0);"
onclick="Msfg$toggleHelp('ctl39_HelpLayer','ctl39_HelpIcon');">Close</a></p></div>
</div><div id="deciFlatFloor" class="">
<label for="ddlFlatFloor">Flat floor</label><select name="ddlFlatFloor"
id="ddlFlatFloor">
<option selected="selected" value="">---</option>
<option value="B">B</option>
<option value="G">G</option>
<option value="M">M</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
<option value="17">17</option>
<option value="18">18</option>
<option value="19">19</option>
<option value="20">20</option>
<option value="21">21</option>
<option value="22">22</option>
<option value="23">23</option>
<option value="24">24</option>
<option value="25">25</option>
<option value="26">26</option>
<option value="27">27</option>
<option value="28">28</option>
<option value="29">29</option>
<option value="30">30</option>
<option value="31">31</option>
<option value="32">32</option>
<option value="33">33</option>
<option value="34">34</option>
<option value="35">35</option>
<option value="36">36</option>
<option value="37">37</option>
<option value="38">38</option>
<option value="39">39</option>
<option value="40">40</option>
<option value="41">41</option>
<option value="42">42</option>
<option value="43">43</option>
<option value="44">44</option>
<option value="45">45</option>
<option value="46">46</option>
<option value="47">47</option>
<option value="48">48</option>
<option value="49">49</option>
<option value="50">50</option>

</select><span id="ValRequiredDropDownListForDdlFlatFloor"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>
</div><div id="ctl06" class="">
<label for="cdlPropertyDescription">Property description</label><select
name="cdlPropertyDescription" id="cdlPropertyDescription">

</select><span id="ValRequiredDropDownListForCdlPropertyDescription"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>
</div><div id="ctl08" class="">
<label for="txtYearBuilt">Year built</label><input name="txtYearBuilt"
type="text" maxlength="4" id="txtYearBuilt"
onblur="Msfg$numericFieldCleanString(this);"
onkeypress="Msfg$SumbitFormEnter(event,'')" style="width:50px;" /><span
id="ValRequiredTextBoxBaseForTxtYearBuilt"
style="color:Red;display:none;"></span><span
id="ValRangeIntegerForTxtYearBuilt"
style="color:Red;display:none;"></span><span
id="ValRegexIntegerForTxtYearBuilt"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>&nbsp;<img
src="/framework/img/icon/help_16.png" id="ctl45_HelpIcon" alt="Help"
title="Year built" class="msfg-helpimg" style="visibility: visible; cursor:
pointer;" onclick="Msfg$toggleHelp('ctl45_HelpLayer','ctl45_HelpIcon');"
/><div id="ctl45_HelpLayer" class="msfg-helplayer" style="display: none;
z-index: 2; opacity: 0.999999;"><p><strong>Year built</strong></p><p>Specify
the approximate year of the property if you do not know the exact
year.</p><p><a href="javascript:void(0);"
onclick="Msfg$toggleHelp('ctl45_HelpLayer','ctl45_HelpIcon');">Close</a></p></div>
</div><div id="ctl10" class="">
<label for="ddlRoofConstruction">Roof construction</label><select
name="ddlRoofConstruction" id="ddlRoofConstruction">
<option selected="selected" value="">-- Select --</option>
<option value="0">Tile</option>
<option value="1">Slate</option>
<option value="2">Concrete</option>
<option value="3">Asphalt</option>
<option value="4">Felt on timber</option>
<option value="5">Corrugated iron</option>
<option value="6">Thatch</option>
<option value="7">Timber</option>
<option value="8">Shingle</option>
<option value="9">Glass</option>
<option value="10">Other</option>

</select><span id="ValRequiredDropDownListForDdlRoofConstruction"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>&nbsp;<img
src="/framework/img/icon/help_16.png" id="ctl51_HelpIcon" alt="Help"
title="Roof construction" class="msfg-helpimg" style="visibility: visible;
cursor: pointer;"
onclick="Msfg$toggleHelp('ctl51_HelpLayer','ctl51_HelpIcon');" /><div
id="ctl51_HelpLayer" class="msfg-helplayer" style="display: none; z-index:
2; opacity: 0.999999;"><p><strong>Roof construction</strong></p><p>Select
the material which the roof of the property is made of. This information can
be found on your valuation report if you are unsure.<br />If the property
roof is constructed of 2 materials, specify the material with the largest
coverage.</p><p><a href="javascript:void(0);"
onclick="Msfg$toggleHelp('ctl51_HelpLayer','ctl51_HelpIcon');">Close</a></p></div>
</div><div id="ctl12" class="">
<label for="ddlWallConstruction">External wall construction</label><select
name="ddlWallConstruction" id="ddlWallConstruction">
<option selected="selected" value="">-- Select --</option>
<option value="0">Brick</option>
<option value="1">Stone</option>
<option value="2">Concrete</option>
<option value="3">Timber frame with brick walls</option>
<option value="4">Timber frame with plaster panels</option>
<option value="5">Timber</option>
<option value="6">Prefabricated - non-combustible</option>
<option value="7">Prefabricated - combustible</option>
<option value="8">Flint</option>
<option value="9">Glass</option>
<option value="10">Corrugated iron</option>
<option value="11">Other</option>

</select><span id="ValRequiredDropDownListForDdlWallConstruction"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>&nbsp;<img
src="/framework/img/icon/help_16.png" id="ctl57_HelpIcon" alt="Help"
title="Wall construction" class="msfg-helpimg" style="visibility: visible;
cursor: pointer;"
onclick="Msfg$toggleHelp('ctl57_HelpLayer','ctl57_HelpIcon');" /><div
id="ctl57_HelpLayer" class="msfg-helplayer" style="display: none; z-index:
2; opacity: 0.999999;"><p><strong>Wall construction</strong></p><p>Select
the material which the wall of the property is made of. This information can
be found on your valuation report if you are unsure.</p><p><a
href="javascript:void(0);"
onclick="Msfg$toggleHelp('ctl57_HelpLayer','ctl57_HelpIcon');">Close</a></p></div>
</div><div id="ctl14" class="">
<label for="ddlNoOfRooms">Number of bedrooms</label><select
name="ddlNoOfRooms" id="ddlNoOfRooms">
<option selected="selected" value="">-- Select --</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>

</select><span id="ValRequiredDropDownListForDdlNoOfRooms"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>
</div><div id="ctl16" class="">
<label for="rdoPropertyGroundMovement">Has the property or surrounding
area ever suffered from ground movement/subsidence</label><div
id="rdoPropertyGroundMovement" class=" msfg-radiobuttonlist">
<input id="rdoPropertyGroundMovement_0" type="radio"
name="rdoPropertyGroundMovement" value="True" /><label
for="rdoPropertyGroundMovement_0">Yes</label><input
id="rdoPropertyGroundMovement_1" type="radio"
name="rdoPropertyGroundMovement" value="False" /><label
for="rdoPropertyGroundMovement_1">No</label>
</div><span
id="rdoPropertyGroundMovement_ValRequiredRadioButtonListForRdoPropertyGroundMovement"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>&nbsp;<img
src="/framework/img/icon/help_16.png" id="ctl63_HelpIcon" alt="Help"
title="Ground movement" class="msfg-helpimg" style="visibility: visible;
cursor: pointer;"
onclick="Msfg$toggleHelp('ctl63_HelpLayer','ctl63_HelpIcon');" /><div
id="ctl63_HelpLayer" class="msfg-helplayer" style="display: none; z-index:
2; opacity: 0.999999;"><p><strong>Ground movement</strong></p><p>Ground
movement is defined as landslip or heave. Underpinning is a good indication
that ground movement or subsidence has taken place.</p><p><a
href="javascript:void(0);"
onclick="Msfg$toggleHelp('ctl63_HelpLayer','ctl63_HelpIcon');">Close</a></p></div>
</div><div id="ctl18" class="">
<label for="ddlPropertyFlooding">Has the property ever suffered from
flooding or is it within 400m of water</label><select
name="ddlPropertyFlooding" id="ddlPropertyFlooding">
<option selected="selected" value="">-- Select --</option>
<option value="0">No</option>
<option value="1">Suffered flooding only</option>
<option value="2">Within 400m of water</option>
<option value="3">Suffered flooding and within 400m of water</option>

</select><span id="ValRequiredDropDownListForDdlPropertyFlooding"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>&nbsp;<img
src="/framework/img/icon/help_16.png" id="ctl69_HelpIcon" alt="Help"
title="Water" class="msfg-helpimg" style="visibility: visible; cursor:
pointer;" onclick="Msfg$toggleHelp('ctl69_HelpLayer','ctl69_HelpIcon');"
/><div id="ctl69_HelpLayer" class="msfg-helplayer" style="display: none;
z-index: 2; opacity: 0.999999;"><p><strong>Water</strong></p><p>Water is
defined as a brook, canal, lake, river, stream, watercourse or
sea.</p><p><a href="javascript:void(0);"
onclick="Msfg$toggleHelp('ctl69_HelpLayer','ctl69_HelpIcon');">Close</a></p></div>
</div><div id="ctl20" class="">
<label for="ddlSmokeAlarms">Number of smoke alarms</label><select
name="ddlSmokeAlarms" id="ddlSmokeAlarms">
<option selected="selected" value="">-- Select --</option>
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3+</option>

</select><span id="ValRequiredDropDownListForDdlSmokeAlarms"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>
</div>
</fieldset>
</fieldset>

<h2 class="msfg-questiongroupheading">Security Details</h2>
<fieldset class="msfg-questiongroup">
<fieldset class="">
<div id="ctl23" class="">
<label for="ddlNeighbourHoodWatch">Do you live in a Neighbourhood Watch
area</label><select name="ddlNeighbourHoodWatch" id="ddlNeighbourHoodWatch">
<option selected="selected" value="2">No</option>
<option value="0">Yes (active member)</option>
<option value="1">Yes (not an active member)</option>

</select><span id="ValRequiredDropDownListForDdlNeighbourHoodWatch"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>
</div><div id="ctl25" class="">
<label for="ddlBurglarAlarm">Burglar alarm system</label><select
name="ddlBurglarAlarm" id="ddlBurglarAlarm">
<option selected="selected" value="">-- Select --</option>
<option value="1">NACOSS approved</option>
<option value="2">Other alarm system</option>
<option value="3">None</option>

</select><span id="ValRequiredDropDownListForDdlBurglarAlarm"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>
</div><div id="ctl27" class="">
<label for="rdoKeyOperatedWindowLocks">All externally accessible windows
fitted with key operated locks</label><div id="rdoKeyOperatedWindowLocks"
class=" msfg-radiobuttonlist">
<input id="rdoKeyOperatedWindowLocks_0" type="radio"
name="rdoKeyOperatedWindowLocks" value="True" /><label
for="rdoKeyOperatedWindowLocks_0">Yes</label><input
id="rdoKeyOperatedWindowLocks_1" type="radio"
name="rdoKeyOperatedWindowLocks" value="False" /><label
for="rdoKeyOperatedWindowLocks_1">No</label>
</div><span
id="rdoKeyOperatedWindowLocks_ValRequiredRadioButtonListForRdoKeyOperatedWindowLocks"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>
</div><div id="deciLocksExternalDoor" class="">
<label for="ddlLocksExternalDoor">Lock fitted to main external
door</label><select name="ddlLocksExternalDoor" id="ddlLocksExternalDoor">
<option selected="selected" value="">-- Select --</option>
<option value="0">Mortice deadlock with min 5 levers to BS3621</option>
<option value="1">Multi point lock system - min 3 bolts (e.g. UPVC
door)</option>
<option value="2">Other lock</option>

</select><span id="ValRequiredDropDownListForDdlLocksExternalDoor"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>&nbsp;<img
src="/framework/img/icon/help_16.png" id="ctl75_HelpIcon" alt="Help"
title="BS3621 Approved lock" class="msfg-helpimg" style="visibility:
visible; cursor: pointer;"
onclick="Msfg$toggleHelp('ctl75_HelpLayer','ctl75_HelpIcon');" /><div
id="ctl75_HelpLayer" class="msfg-helplayer" style="display: none; z-index:
2; opacity: 0.999999;"><p><strong>BS3621 Approved
lock</strong></p><p><p>Look for the British Standard Kite Mark on the lock.
This can sometimes be found on the facing plate (the part in the door where
the bolt pops out when the key is turned).</p><p><img
src='../framework/img/logo/bs_kitemark.png'> British Standard Kite
Mark</p><p><strong>Multi Point Locking System</strong></p><p>If you have a
UPVC door, it is likely to have a multi point locking systems fitted.<br
/>It is also possible to have a multipoint locking system on some aluminum
doors.</p></p><p><a href="javascript:void(0);"
onclick="Msfg$toggleHelp('ctl75_HelpLayer','ctl75_HelpIcon');">Close</a></p></div>
</div><div id="deciPatioExternalLocks" class="">
<label for="ddlPatioExternalLocks">Locks fitted to external patio/sliding
or French doors</label><select name="ddlPatioExternalLocks"
id="ddlPatioExternalLocks">
<option selected="selected" value="">-- Select --</option>
<option value="0">No external patio/sliding or French doors</option>
<option value="1">Mortice deadlock with min 5 levers to BS3621</option>
<option value="2">Multi point lock system - min 3 bolts (e.g. UPVC
door)</option>
<option value="3">Other locks</option>

</select><span id="ValRequiredDropDownListForDdlPatioExternalLocks"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>&nbsp;<img
src="/framework/img/icon/help_16.png" id="ctl81_HelpIcon" alt="Help"
title="BS3621 Approved locks" class="msfg-helpimg" style="visibility:
visible; cursor: pointer;"
onclick="Msfg$toggleHelp('ctl81_HelpLayer','ctl81_HelpIcon');" /><div
id="ctl81_HelpLayer" class="msfg-helplayer" style="display: none; z-index:
2; opacity: 0.999999;"><p><strong>BS3621 Approved
locks</strong></p><p><p>Look for the British Standard Kite Mark on the lock.
This can sometimes be found on the facing plate (the part in the door where
the bolt pops out when the key is turned).</p><p><img
src='../framework/img/logo/bs_kitemark.png'> British Standard Kite
Mark</p><p><strong>Multi Point Locking System</strong></p><p>If you have a
UPVC door, it is likely to have a multi point locking systems fitted.<br
/>It is also possible to have a multipoint locking system on some aluminum
doors.</p><p><strong>More Than One Door</strong></p><p>If there are several
doors with different types of locks select the lock with lowest level of
security. See below for security levels:</p>Mortice deadlock with minimum 5
levers to BS3621 - high<br />Multi point lock system with minimum 3 bolts -
medium<br />Other locks - low</p><p><a href="javascript:void(0);"
onclick="Msfg$toggleHelp('ctl81_HelpLayer','ctl81_HelpIcon');">Close</a></p></div>
</div><div id="deciOtherExternalLocks" class="">
<label for="ddlOtherExternalLocks">Locks fitted to other external
doors</label><select name="ddlOtherExternalLocks"
id="ddlOtherExternalLocks">
<option selected="selected" value="">-- Select --</option>
<option value="0">No other external doors</option>
<option value="1">Mortice deadlock with min 5 levers to BS3621</option>
<option value="2">Multi point lock system - min 3 bolts (e.g. UPVC
door)</option>
<option value="3">Other locks</option>

</select><span id="ValRequiredDropDownListForDdlOtherExternalLocks"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>&nbsp;<img
src="/framework/img/icon/help_16.png" id="ctl87_HelpIcon" alt="Help"
title="BS3621 Approved locks" class="msfg-helpimg" style="visibility:
visible; cursor: pointer;"
onclick="Msfg$toggleHelp('ctl87_HelpLayer','ctl87_HelpIcon');" /><div
id="ctl87_HelpLayer" class="msfg-helplayer" style="display: none; z-index:
2; opacity: 0.999999;"><p><strong>BS3621 Approved
locks</strong></p><p><p>Look for the British Standard Kite Mark on the lock.
This can sometimes be found on the facing plate (the part in the door where
the bolt pops out when the key is turned).</p><p><img
src='../framework/img/logo/bs_kitemark.png'> British Standard Kite
Mark</p><p><strong>Multi Point Locking System</strong></p><p>If you have a
UPVC door, it is likely to have a multi point locking systems fitted.<br
/>It is also possible to have a multipoint locking system on some aluminum
doors.</p><p><strong>More Than One Door</strong></p><p>If there are several
doors with different types of locks select the lock with lowest level of
security. See below for security levels:</p>Mortice deadlock with minimum 5
levers to BS3621 - high<br />Multi point lock system with minimum 3 bolts -
medium<br />Other locks - low</p><p><a href="javascript:void(0);"
onclick="Msfg$toggleHelp('ctl87_HelpLayer','ctl87_HelpIcon');">Close</a></p></div>
</div>
</fieldset>
</fieldset>

<h2 class="msfg-questiongroupheading">Occupancy Details</h2>
<fieldset class="msfg-questiongroup">
<fieldset class="">
<div id="ctl33" class="">
<label for="ddlDailyOccupancy">Daily occupancy</label><select
name="ddlDailyOccupancy" id="ddlDailyOccupancy"
onchange="CheckDailyOccupancy();">
<option selected="selected" value="">-- Select --</option>
<option value="0">Occupied during the day</option>
<option value="1">Occupied over night</option>
<option value="2">Occupied day and night</option>
<option value="3">Permanently unoccupied</option>

</select><span id="ValRequiredDropDownListForDdlDailyOccupancy"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>
</div><div id="deciNumOfConsectutiveDaysUnoccupied" class="">
<label for="ddlNumOfConsectutiveDaysUnoccupied">Number of consecutive days
property is left unoccupied</label><select
name="ddlNumOfConsectutiveDaysUnoccupied"
id="ddlNumOfConsectutiveDaysUnoccupied">
<option selected="selected" value="">-- Select --</option>
<option value="0">0</option>
<option value="1">1-14</option>
<option value="2">15-30</option>
<option value="3">31-45</option>
<option value="4">46-60</option>
<option value="5">61+</option>

</select><span
id="ValRequiredDropDownListForDdlNumOfConsectutiveDaysUnoccupied"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>&nbsp;<img
src="/framework/img/icon/help_16.png" id="ctl93_HelpIcon" alt="Help"
title="Number of consecutive days property is left unoccupied"
class="msfg-helpimg" style="visibility: visible; cursor: pointer;"
onclick="Msfg$toggleHelp('ctl93_HelpLayer','ctl93_HelpIcon');" /><div
id="ctl93_HelpLayer" class="msfg-helplayer" style="display: none; z-index:
2; opacity: 0.999999;"><p><strong>Number of consecutive days property is
left unoccupied</strong></p><p>Select the number of days in a row that the
property is left unoccupied in a year, e.g. holidays, business
trips.</p><p><a href="javascript:void(0);"
onclick="Msfg$toggleHelp('ctl93_HelpLayer','ctl93_HelpIcon');">Close</a></p></div><p
class="msfg-infotip">The longer your property is left unoccupied, the higher
the premium.</p>
</div><div id="deciNumAdultsAtProperty" class="">
<label for="ddlNumAdultsAtProperty">Number of adults living in the
property</label><select name="ddlNumAdultsAtProperty"
id="ddlNumAdultsAtProperty">
<option selected="selected" value="">-- Select --</option>
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="255">6+</option>

</select><span id="ValRequiredDropDownListForDdlNumAdultsAtProperty"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>&nbsp;<img
src="/framework/img/icon/help_16.png" id="ctl99_HelpIcon" alt="Help"
title="Adults" class="msfg-helpimg" style="visibility: visible; cursor:
pointer;" onclick="Msfg$toggleHelp('ctl99_HelpLayer','ctl99_HelpIcon');"
/><div id="ctl99_HelpLayer" class="msfg-helplayer" style="display: none;
z-index: 2; opacity: 0.999999;"><p><strong>Adults</strong></p><p>For a more
accurate quote, state how many adults over the age of 18 living at the
property.
</p><p><a href="javascript:void(0);"
onclick="Msfg$toggleHelp('ctl99_HelpLayer','ctl99_HelpIcon');">Close</a></p></div>
</div><div id="deciNumChildrenAtProperty" class="">
<label for="ddlNumChildrenAtProperty">Number of children living in the
property</label><select name="ddlNumChildrenAtProperty"
id="ddlNumChildrenAtProperty">
<option selected="selected" value="">-- Select --</option>
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="255">6+</option>

</select><span id="ValRequiredDropDownListForDdlNumChildrenAtProperty"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>&nbsp;<img
src="/framework/img/icon/help_16.png" id="ctl105_HelpIcon" alt="Help"
title="Number of children living in the property" class="msfg-helpimg"
style="visibility: visible; cursor: pointer;"
onclick="Msfg$toggleHelp('ctl105_HelpLayer','ctl105_HelpIcon');" /><div
id="ctl105_HelpLayer" class="msfg-helplayer" style="display: none; z-index:
2; opacity: 0.999999;"><p><strong>Number of children living in the
property</strong></p><p>For a more accurate quote, state how many children
live in the property?</p><p><a href="javascript:void(0);"
onclick="Msfg$toggleHelp('ctl105_HelpLayer','ctl105_HelpIcon');">Close</a></p></div>
</div><div id="ctl38" class="">
<label for="ddlOwnershipStatus">Ownership status</label><select
name="ddlOwnershipStatus" id="ddlOwnershipStatus">
<option selected="selected" value="">-- Select --</option>
<option value="0">Owned outright</option>
<option value="1">Mortgaged</option>
<option value="2">Tenant</option>
<option value="3">Landlord</option>

</select><span id="ValRequiredDropDownListForDdlOwnershipStatus"
style="color:Red;display:none;"></span>&nbsp;<em>*</em>&nbsp;<img
src="/framework/img/icon/help_16.png" id="ctl111_HelpIcon" alt="Help"
title="Ownership status" class="msfg-helpimg" style="visibility: visible;
cursor: pointer;"
onclick="Msfg$toggleHelp('ctl111_HelpLayer','ctl111_HelpIcon');" /><div
id="ctl111_HelpLayer" class="msfg-helplayer" style="display: none; z-index:
2; opacity: 0.999999;"><p><strong>Ownership status</strong></p><p>Owned
outright - No mortgage and you live in the property.<br />Mortgaged -
Mortgage and you live in the property.<br />Tenant - You don't own the
property but you live in it.<br />Landlord - You own the property but you
don't live in it.</p><p><a href="javascript:void(0);"
onclick="Msfg$toggleHelp('ctl111_HelpLayer','ctl111_HelpIcon');">Close</a></p></div>
</div>
</fieldset>
</fieldset>

<span id="valOccupancyStatus"
style="color:Red;display:none;visibility:hidden;">Please select 1 or more
adults living in the property, as you have indicated that the property is
occupied.</span>

<input type="image" name="btnProceed" id="btnProceed" title="Proceed"
class="msfg-formstepbutton" causevalidation="true"
src="/images/channel/homeinsurance/continue-insurance.png" alt="Proceed"
onclick="javascript:WebForm_DoPostBackWithOptions(new
WebForm_PostBackOptions(&quot;btnProceed&quot;, &quot;&quot;, true,
&quot;&quot;, &quot;&quot;, false, false))" style="border-width:0px;" />
<p class="msfg-requiredstatement">Questions marked with <em>*</em> are
required</p>
<div id="VerisignStatement_pnlVerisign">

<div style="FLOAT: left">
<div style='display: inline; width: 104px; height: 72px; padding-right:
5px;'>
<script
src='https://seal.verisign.com/getseal?h...e=S&amp;use_flash=YES&amp;use_transparent=YES'
type='text/javascript'></script>
</div>
</div>
<div id="footertext">Our site is protected by <a
href="javascript:__popSubmit('VerisignStatement$ccVerisignSeal',550,460,0,0,1,1,0,0,true,3,true,'',0,true,1,'https://seal.verisign.com/splash?fo...mp;dn=www.moneysupermarket.com&amp;lang=en');"
id="VerisignStatement_ccVerisignSeal" rel="nofollow">VeriSign</a>
, the latest in Internet security standards, to ensure that any
data you sent to us online is secure. When you enter a secure area a small
padlock or key will be displayed at the bottom of the screen indicating
that
you have a secure connection with us. You can rest assured that the
information
you supply is encrypted and cannot be read by anyone else. We are
committed to
protecting your privacy. Read our <a
href="javascript:__popSubmit('VerisignStatement$ccPrivacyPolicy',640,480,0,0,1,1,0,0,true,3,true,'',0,false,1,'http://www.moneysupermarket.com/framework/pages/legal/privacypolicy.aspx?p=0&amp;channelid=1');"
id="VerisignStatement_ccPrivacyPolicy">privacy policy</a>
and shop online with confidence.
</div>

</div>


</div>
</div>

<script type="text/javascript">
<!--
var Page_ValidationHighlighters = new
Array(document.getElementById("ValidationHighlighter1"));
var Page_ValidationSummaries = new
Array(document.getElementById("errorSummary"));
var Page_Validators = new
Array(document.getElementById("addressLookup_valCustomAddressRequired"),
document.getElementById("ValRequiredDropDownListForCdlPropertyType"),
document.getElementById("ValRequiredDropDownListForDdlFlatFloor"),
document.getElementById("ValRequiredDropDownListForCdlPropertyDescription"),
document.getElementById("ValRequiredTextBoxBaseForTxtYearBuilt"),
document.getElementById("ValRangeIntegerForTxtYearBuilt"),
document.getElementById("ValRegexIntegerForTxtYearBuilt"),
document.getElementById("ValRequiredDropDownListForDdlRoofConstruction"),
document.getElementById("ValRequiredDropDownListForDdlWallConstruction"),
document.getElementById("ValRequiredDropDownListForDdlNoOfRooms"),
document.getElementById("rdoPropertyGroundMovement_ValRequiredRadioButtonListForRdoPropertyGroundMovement"),
document.getElementById("ValRequiredDropDownListForDdlPropertyFlooding"),
document.getElementById("ValRequiredDropDownListForDdlSmokeAlarms"),
document.getElementById("ValRequiredDropDownListForDdlNeighbourHoodWatch"),
document.getElementById("ValRequiredDropDownListForDdlBurglarAlarm"),
document.getElementById("rdoKeyOperatedWindowLocks_ValRequiredRadioButtonListForRdoKeyOperatedWindowLocks"),
document.getElementById("ValRequiredDropDownListForDdlLocksExternalDoor"),
document.getElementById("ValRequiredDropDownListForDdlPatioExternalLocks"),
document.getElementById("ValRequiredDropDownListForDdlOtherExternalLocks"),
document.getElementById("ValRequiredDropDownListForDdlDailyOccupancy"),
document.getElementById("ValRequiredDropDownListForDdlNumOfConsectutiveDaysUnoccupied"),
document.getElementById("ValRequiredDropDownListForDdlNumAdultsAtProperty"),
document.getElementById("ValRequiredDropDownListForDdlNumChildrenAtProperty"),
document.getElementById("ValRequiredDropDownListForDdlOwnershipStatus"),
document.getElementById("valOccupancyStatus"));
// -->
</script>

<script type="text/javascript">
<!--
var ValidationHighlighter1 = document.all ?
document.all["ValidationHighlighter1"] :
document.getElementById("ValidationHighlighter1");
ValidationHighlighter1.validationGroup = "AddressLookup";
var addressLookup_valCustomAddressRequired = document.all ?
document.all["addressLookup_valCustomAddressRequired"] :
document.getElementById("addressLookup_valCustomAddressRequired");
addressLookup_valCustomAddressRequired.hiddenFieldId =
"addressLookup_AddressSelected";
addressLookup_valCustomAddressRequired.errormessage = "Please specify a
valid postcode and click find address.";
addressLookup_valCustomAddressRequired.display = "None";
addressLookup_valCustomAddressRequired.evaluationfunction =
"CustomValidatorEvaluateIsValid";
addressLookup_valCustomAddressRequired.clientvalidationfunction =
"Msfg$customRequiredAddressLookupValidatorEvaluateIsValid";
var errorSummary = document.all ? document.all["errorSummary"] :
document.getElementById("errorSummary");
errorSummary.headertext = "Please correct the following errors:";
var ValRequiredDropDownListForCdlPropertyType = document.all ?
document.all["ValRequiredDropDownListForCdlPropertyType"] :
document.getElementById("ValRequiredDropDownListForCdlPropertyType");
ValRequiredDropDownListForCdlPropertyType.controltovalidate =
"cdlPropertyType";
ValRequiredDropDownListForCdlPropertyType.errormessage = "Please select a
property type.";
ValRequiredDropDownListForCdlPropertyType.display = "None";
ValRequiredDropDownListForCdlPropertyType.evaluationfunction =
"RequiredFieldValidatorEvaluateIsValid";
ValRequiredDropDownListForCdlPropertyType.initialvalue = "";
var ValRequiredDropDownListForDdlFlatFloor = document.all ?
document.all["ValRequiredDropDownListForDdlFlatFloor"] :
document.getElementById("ValRequiredDropDownListForDdlFlatFloor");
ValRequiredDropDownListForDdlFlatFloor.controltovalidate = "ddlFlatFloor";
ValRequiredDropDownListForDdlFlatFloor.errormessage = "Please select the
flat floor.";
ValRequiredDropDownListForDdlFlatFloor.display = "None";
ValRequiredDropDownListForDdlFlatFloor.enabled = "False";
ValRequiredDropDownListForDdlFlatFloor.evaluationfunction =
"RequiredFieldValidatorEvaluateIsValid";
ValRequiredDropDownListForDdlFlatFloor.initialvalue = "";
var ValRequiredDropDownListForCdlPropertyDescription = document.all ?
document.all["ValRequiredDropDownListForCdlPropertyDescription"] :
document.getElementById("ValRequiredDropDownListForCdlPropertyDescription");
ValRequiredDropDownListForCdlPropertyDescription.controltovalidate =
"cdlPropertyDescription";
ValRequiredDropDownListForCdlPropertyDescription.errormessage = "Please
select a property description.";
ValRequiredDropDownListForCdlPropertyDescription.display = "None";
ValRequiredDropDownListForCdlPropertyDescription.evaluationfunction =
"RequiredFieldValidatorEvaluateIsValid";
ValRequiredDropDownListForCdlPropertyDescription.initialvalue = "";
var ValRequiredTextBoxBaseForTxtYearBuilt = document.all ?
document.all["ValRequiredTextBoxBaseForTxtYearBuilt"] :
document.getElementById("ValRequiredTextBoxBaseForTxtYearBuilt");
ValRequiredTextBoxBaseForTxtYearBuilt.controltovalidate = "txtYearBuilt";
ValRequiredTextBoxBaseForTxtYearBuilt.errormessage = "Please specify a valid
year between 1600 and the current year.";
ValRequiredTextBoxBaseForTxtYearBuilt.display = "None";
ValRequiredTextBoxBaseForTxtYearBuilt.evaluationfunction =
"RequiredFieldValidatorEvaluateIsValid";
ValRequiredTextBoxBaseForTxtYearBuilt.initialvalue = "";
var ValRangeIntegerForTxtYearBuilt = document.all ?
document.all["ValRangeIntegerForTxtYearBuilt"] :
document.getElementById("ValRangeIntegerForTxtYearBuilt");
ValRangeIntegerForTxtYearBuilt.controltovalidate = "txtYearBuilt";
ValRangeIntegerForTxtYearBuilt.errormessage = "Please specify a valid year
between 1600 and the current year.";
ValRangeIntegerForTxtYearBuilt.display = "None";
ValRangeIntegerForTxtYearBuilt.type = "Integer";
ValRangeIntegerForTxtYearBuilt.evaluationfunction =
"RangeValidatorEvaluateIsValid";
ValRangeIntegerForTxtYearBuilt.maximumvalue = "2008";
ValRangeIntegerForTxtYearBuilt.minimumvalue = "1600";
var ValRegexIntegerForTxtYearBuilt = document.all ?
document.all["ValRegexIntegerForTxtYearBuilt"] :
document.getElementById("ValRegexIntegerForTxtYearBuilt");
ValRegexIntegerForTxtYearBuilt.controltovalidate = "txtYearBuilt";
ValRegexIntegerForTxtYearBuilt.errormessage = "Please specify a valid year
between 1600 and the current year.";
ValRegexIntegerForTxtYearBuilt.display = "None";
ValRegexIntegerForTxtYearBuilt.evaluationfunction =
"Msfg$RegularExpressionValidatorEvaluateIsValid";
ValRegexIntegerForTxtYearBuilt.validationexpression = "^[\\d]+$";
ValRegexIntegerForTxtYearBuilt.initialvalue = "";
var ValRequiredDropDownListForDdlRoofConstruction = document.all ?
document.all["ValRequiredDropDownListForDdlRoofConstruction"] :
document.getElementById("ValRequiredDropDownListForDdlRoofConstruction");
ValRequiredDropDownListForDdlRoofConstruction.controltovalidate =
"ddlRoofConstruction";
ValRequiredDropDownListForDdlRoofConstruction.errormessage = "Please select
the property\'s roof construction.";
ValRequiredDropDownListForDdlRoofConstruction.display = "None";
ValRequiredDropDownListForDdlRoofConstruction.evaluationfunction =
"RequiredFieldValidatorEvaluateIsValid";
ValRequiredDropDownListForDdlRoofConstruction.initialvalue = "";
var ValRequiredDropDownListForDdlWallConstruction = document.all ?
document.all["ValRequiredDropDownListForDdlWallConstruction"] :
document.getElementById("ValRequiredDropDownListForDdlWallConstruction");
ValRequiredDropDownListForDdlWallConstruction.controltovalidate =
"ddlWallConstruction";
ValRequiredDropDownListForDdlWallConstruction.errormessage = "Please select
the property\'s external wall construction.";
ValRequiredDropDownListForDdlWallConstruction.display = "None";
ValRequiredDropDownListForDdlWallConstruction.evaluationfunction =
"RequiredFieldValidatorEvaluateIsValid";
ValRequiredDropDownListForDdlWallConstruction.initialvalue = "";
var ValRequiredDropDownListForDdlNoOfRooms = document.all ?
document.all["ValRequiredDropDownListForDdlNoOfRooms"] :
document.getElementById("ValRequiredDropDownListForDdlNoOfRooms");
ValRequiredDropDownListForDdlNoOfRooms.controltovalidate = "ddlNoOfRooms";
ValRequiredDropDownListForDdlNoOfRooms.errormessage = "Please select the
number of bedrooms in the property.";
ValRequiredDropDownListForDdlNoOfRooms.display = "None";
ValRequiredDropDownListForDdlNoOfRooms.evaluationfunction =
"RequiredFieldValidatorEvaluateIsValid";
ValRequiredDropDownListForDdlNoOfRooms.initialvalue = "";
var
rdoPropertyGroundMovement_ValRequiredRadioButtonListForRdoPropertyGroundMovement
= document.all ?
document.all["rdoPropertyGroundMovement_ValRequiredRadioButtonListForRdoPropertyGroundMovement"]
:
document.getElementById("rdoPropertyGroundMovement_ValRequiredRadioButtonListForRdoPropertyGroundMovement");
rdoPropertyGroundMovement_ValRequiredRadioButtonListForRdoPropertyGroundMovement.controltovalidate
= "rdoPropertyGroundMovement";
rdoPropertyGroundMovement_ValRequiredRadioButtonListForRdoPropertyGroundMovement.errormessage
= "Please state if the property or surrounding area ever suffered from
ground movement/subsidence.";
rdoPropertyGroundMovement_ValRequiredRadioButtonListForRdoPropertyGroundMovement.display
= "None";
rdoPropertyGroundMovement_ValRequiredRadioButtonListForRdoPropertyGroundMovement.evaluationfunction
= "RequiredFieldValidatorEvaluateIsValid";
rdoPropertyGroundMovement_ValRequiredRadioButtonListForRdoPropertyGroundMovement.initialvalue
= "";
var ValRequiredDropDownListForDdlPropertyFlooding = document.all ?
document.all["ValRequiredDropDownListForDdlPropertyFlooding"] :
document.getElementById("ValRequiredDropDownListForDdlPropertyFlooding");
ValRequiredDropDownListForDdlPropertyFlooding.controltovalidate =
"ddlPropertyFlooding";
ValRequiredDropDownListForDdlPropertyFlooding.errormessage = "Please select
if the property has ever suffered from flooding or if it is within 400m of
water.";
ValRequiredDropDownListForDdlPropertyFlooding.display = "None";
ValRequiredDropDownListForDdlPropertyFlooding.evaluationfunction =
"RequiredFieldValidatorEvaluateIsValid";
ValRequiredDropDownListForDdlPropertyFlooding.initialvalue = "";
var ValRequiredDropDownListForDdlSmokeAlarms = document.all ?
document.all["ValRequiredDropDownListForDdlSmokeAlarms"] :
document.getElementById("ValRequiredDropDownListForDdlSmokeAlarms");
ValRequiredDropDownListForDdlSmokeAlarms.controltovalidate =
"ddlSmokeAlarms";
ValRequiredDropDownListForDdlSmokeAlarms.errormessage = "Please select the
number of smoke alarms installed at the property.";
ValRequiredDropDownListForDdlSmokeAlarms.display = "None";
ValRequiredDropDownListForDdlSmokeAlarms.evaluationfunction =
"RequiredFieldValidatorEvaluateIsValid";
ValRequiredDropDownListForDdlSmokeAlarms.initialvalue = "";
var ValRequiredDropDownListForDdlNeighbourHoodWatch = document.all ?
document.all["ValRequiredDropDownListForDdlNeighbourHoodWatch"] :
document.getElementById("ValRequiredDropDownListForDdlNeighbourHoodWatch");
ValRequiredDropDownListForDdlNeighbourHoodWatch.controltovalidate =
"ddlNeighbourHoodWatch";
ValRequiredDropDownListForDdlNeighbourHoodWatch.errormessage = "Please
select if you live in a Neighbourhood Watch area.";
ValRequiredDropDownListForDdlNeighbourHoodWatch.display = "None";
ValRequiredDropDownListForDdlNeighbourHoodWatch.evaluationfunction =
"RequiredFieldValidatorEvaluateIsValid";
ValRequiredDropDownListForDdlNeighbourHoodWatch.initialvalue = "";
var ValRequiredDropDownListForDdlBurglarAlarm = document.all ?
document.all["ValRequiredDropDownListForDdlBurglarAlarm"] :
document.getElementById("ValRequiredDropDownListForDdlBurglarAlarm");
ValRequiredDropDownListForDdlBurglarAlarm.controltovalidate =
"ddlBurglarAlarm";
ValRequiredDropDownListForDdlBurglarAlarm.errormessage = "Please select the
burglar alarm system in the property.";
ValRequiredDropDownListForDdlBurglarAlarm.display = "None";
ValRequiredDropDownListForDdlBurglarAlarm.evaluationfunction =
"RequiredFieldValidatorEvaluateIsValid";
ValRequiredDropDownListForDdlBurglarAlarm.initialvalue = "";
var
rdoKeyOperatedWindowLocks_ValRequiredRadioButtonListForRdoKeyOperatedWindowLocks
= document.all ?
document.all["rdoKeyOperatedWindowLocks_ValRequiredRadioButtonListForRdoKeyOperatedWindowLocks"]
:
document.getElementById("rdoKeyOperatedWindowLocks_ValRequiredRadioButtonListForRdoKeyOperatedWindowLocks");
rdoKeyOperatedWindowLocks_ValRequiredRadioButtonListForRdoKeyOperatedWindowLocks.controltovalidate
= "rdoKeyOperatedWindowLocks";
rdoKeyOperatedWindowLocks_ValRequiredRadioButtonListForRdoKeyOperatedWindowLocks.errormessage
= "Please state if all externally accessible windows are fitted with key
operated locks.";
rdoKeyOperatedWindowLocks_ValRequiredRadioButtonListForRdoKeyOperatedWindowLocks.display
= "None";
rdoKeyOperatedWindowLocks_ValRequiredRadioButtonListForRdoKeyOperatedWindowLocks.evaluationfunction
= "RequiredFieldValidatorEvaluateIsValid";
rdoKeyOperatedWindowLocks_ValRequiredRadioButtonListForRdoKeyOperatedWindowLocks.initialvalue
= "";
var ValRequiredDropDownListForDdlLocksExternalDoor = document.all ?
document.all["ValRequiredDropDownListForDdlLocksExternalDoor"] :
document.getElementById("ValRequiredDropDownListForDdlLocksExternalDoor");
ValRequiredDropDownListForDdlLocksExternalDoor.controltovalidate =
"ddlLocksExternalDoor";
ValRequiredDropDownListForDdlLocksExternalDoor.errormessage = "Please select
the locks fitted to main external door.";
ValRequiredDropDownListForDdlLocksExternalDoor.display = "None";
ValRequiredDropDownListForDdlLocksExternalDoor.evaluationfunction =
"RequiredFieldValidatorEvaluateIsValid";
ValRequiredDropDownListForDdlLocksExternalDoor.initialvalue = "";
var ValRequiredDropDownListForDdlPatioExternalLocks = document.all ?
document.all["ValRequiredDropDownListForDdlPatioExternalLocks"] :
document.getElementById("ValRequiredDropDownListForDdlPatioExternalLocks");
ValRequiredDropDownListForDdlPatioExternalLocks.controltovalidate =
"ddlPatioExternalLocks";
ValRequiredDropDownListForDdlPatioExternalLocks.errormessage = "Please
select the locks fitted to external patio or French doors.";
ValRequiredDropDownListForDdlPatioExternalLocks.display = "None";
ValRequiredDropDownListForDdlPatioExternalLocks.evaluationfunction =
"RequiredFieldValidatorEvaluateIsValid";
ValRequiredDropDownListForDdlPatioExternalLocks.initialvalue = "";
var ValRequiredDropDownListForDdlOtherExternalLocks = document.all ?
document.all["ValRequiredDropDownListForDdlOtherExternalLocks"] :
document.getElementById("ValRequiredDropDownListForDdlOtherExternalLocks");
ValRequiredDropDownListForDdlOtherExternalLocks.controltovalidate =
"ddlOtherExternalLocks";
ValRequiredDropDownListForDdlOtherExternalLocks.errormessage = "Please
select the locks fitted to other external doors.";
ValRequiredDropDownListForDdlOtherExternalLocks.display = "None";
ValRequiredDropDownListForDdlOtherExternalLocks.evaluationfunction =
"RequiredFieldValidatorEvaluateIsValid";
ValRequiredDropDownListForDdlOtherExternalLocks.initialvalue = "";
var ValRequiredDropDownListForDdlDailyOccupancy = document.all ?
document.all["ValRequiredDropDownListForDdlDailyOccupancy"] :
document.getElementById("ValRequiredDropDownListForDdlDailyOccupancy");
ValRequiredDropDownListForDdlDailyOccupancy.controltovalidate =
"ddlDailyOccupancy";
ValRequiredDropDownListForDdlDailyOccupancy.errormessage = "Please select
daily occupancy.";
ValRequiredDropDownListForDdlDailyOccupancy.display = "None";
ValRequiredDropDownListForDdlDailyOccupancy.evaluationfunction =
"RequiredFieldValidatorEvaluateIsValid";
ValRequiredDropDownListForDdlDailyOccupancy.initialvalue = "";
var ValRequiredDropDownListForDdlNumOfConsectutiveDaysUnoccupied =
document.all ?
document.all["ValRequiredDropDownListForDdlNumOfConsectutiveDaysUnoccupied"]
:
document.getElementById("ValRequiredDropDownListForDdlNumOfConsectutiveDaysUnoccupied");
ValRequiredDropDownListForDdlNumOfConsectutiveDaysUnoccupied.controltovalidate
= "ddlNumOfConsectutiveDaysUnoccupied";
ValRequiredDropDownListForDdlNumOfConsectutiveDaysUnoccupied.errormessage =
"Please select the number of consecutive days property is left unoccupied.";
ValRequiredDropDownListForDdlNumOfConsectutiveDaysUnoccupied.display =
"None";
ValRequiredDropDownListForDdlNumOfConsectutiveDaysUnoccupied.enabled =
"False";
ValRequiredDropDownListForDdlNumOfConsectutiveDaysUnoccupied.evaluationfunction
= "RequiredFieldValidatorEvaluateIsValid";
ValRequiredDropDownListForDdlNumOfConsectutiveDaysUnoccupied.initialvalue =
"";
var ValRequiredDropDownListForDdlNumAdultsAtProperty = document.all ?
document.all["ValRequiredDropDownListForDdlNumAdultsAtProperty"] :
document.getElementById("ValRequiredDropDownListForDdlNumAdultsAtProperty");
ValRequiredDropDownListForDdlNumAdultsAtProperty.controltovalidate =
"ddlNumAdultsAtProperty";
ValRequiredDropDownListForDdlNumAdultsAtProperty.errormessage = "Please
select the number of adults living in the property.";
ValRequiredDropDownListForDdlNumAdultsAtProperty.display = "None";
ValRequiredDropDownListForDdlNumAdultsAtProperty.enabled = "False";
ValRequiredDropDownListForDdlNumAdultsAtProperty.evaluationfunction =
"RequiredFieldValidatorEvaluateIsValid";
ValRequiredDropDownListForDdlNumAdultsAtProperty.initialvalue = "";
var ValRequiredDropDownListForDdlNumChildrenAtProperty = document.all ?
document.all["ValRequiredDropDownListForDdlNumChildrenAtProperty"] :
document.getElementById("ValRequiredDropDownListForDdlNumChildrenAtProperty");
ValRequiredDropDownListForDdlNumChildrenAtProperty.controltovalidate =
"ddlNumChildrenAtProperty";
ValRequiredDropDownListForDdlNumChildrenAtProperty.errormessage = "Please
select the number of children living in the property.";
ValRequiredDropDownListForDdlNumChildrenAtProperty.display = "None";
ValRequiredDropDownListForDdlNumChildrenAtProperty.enabled = "False";
ValRequiredDropDownListForDdlNumChildrenAtProperty.evaluationfunction =
"RequiredFieldValidatorEvaluateIsValid";
ValRequiredDropDownListForDdlNumChildrenAtProperty.initialvalue = "";
var ValRequiredDropDownListForDdlOwnershipStatus = document.all ?
document.all["ValRequiredDropDownListForDdlOwnershipStatus"] :
document.getElementById("ValRequiredDropDownListForDdlOwnershipStatus");
ValRequiredDropDownListForDdlOwnershipStatus.controltovalidate =
"ddlOwnershipStatus";
ValRequiredDropDownListForDdlOwnershipStatus.errormessage = "Please select
the ownership status of the property.";
ValRequiredDropDownListForDdlOwnershipStatus.display = "None";
ValRequiredDropDownListForDdlOwnershipStatus.evaluationfunction =
"RequiredFieldValidatorEvaluateIsValid";
ValRequiredDropDownListForDdlOwnershipStatus.initialvalue = "";
var valOccupancyStatus = document.all ? document.all["valOccupancyStatus"] :
document.getElementById("valOccupancyStatus");
valOccupancyStatus.controltovalidate = "ddlDailyOccupancy";
valOccupancyStatus.errormessage = "Please select 1 or more adults living in
the property, as you have indicated that the property is occupied.";
valOccupancyStatus.evaluationfunction = "CustomValidatorEvaluateIsValid";
valOccupancyStatus.clientvalidationfunction = "CheckOccupancyStatus";
// -->
</script>


<script type="text/javascript">
<!--

if (typeof(ValidationSummaryOnSubmit) == "function" &&
typeof(ValidationSummaryOnSubmitFunction) != "function")
{
ValidationSummaryOnSubmitFunction = ValidationSummaryOnSubmit;

ValidationSummaryOnSubmit = function(validationGroup)
{
ValidationSummaryOnSubmitFunction(validationGroup);
Msfg$validationHighlighterOnSubmit(validationGroup);
}
}
document.getElementById('errorSummary').dispose = function() {
Array.remove(Page_ValidationSummaries,
document.getElementById('errorSummary'));
}
// -->
</script>

<script type="text/javascript">
<!--
var Page_ValidationActive = false;
if (typeof(ValidatorOnLoad) == "function") {
ValidatorOnLoad();
}

function ValidatorOnSubmit() {
if (Page_ValidationActive) {
return ValidatorCommonOnSubmit();
}
else {
return true;
}
}
// -->
</script>

<script type="text/javascript">
<!--
Sys.Application.initialize();
Sys.Application.add_init(function() {
$create(Sys.UI._UpdateProgress,
{"associatedUpdatePanelId":"addressLookup_AddressLookupUpdatePanel","displayAfter":500,"dynamicLayout":true},
null, null, $get("addressLookup_udpProgress"));
});

document.getElementById('addressLookup_valCustomAddressRequired').dispose =
function() {
Array.remove(Page_Validators,
document.getElementById('addressLookup_valCustomAddressRequired'));
}

document.getElementById('ValRequiredDropDownListForCdlPropertyType').dispose
= function() {
Array.remove(Page_Validators,
document.getElementById('ValRequiredDropDownListForCdlPropertyType'));
}
Sys.Application.add_init(function() {
$create(Controls.CascadingDropDownListBehavior,
{"Category":"type","ClientOnBeginRequest":"","ClientOnRequestComplete":"","ClientStateEnabled":true,"ClientStateFieldId":"cdlPropertyType_ClientState","DefaultText":"--
Select --","LoadingText":"Please
Wait...","ParentControlId":"","ParentValue":null,"ServiceMethod":"GetDropDownContents","ServicePath":"/home/lookups/PropertyTypes.asmx"},
null, null, $get("cdlPropertyType"));
});
Sys.Application.add_init(function() {
$create(Controls.DataEntryContainerItemBehavior,
{"ClientStateEnabled":false,"Hidden":true}, null, null,
$get("deciFlatFloor"));
});

document.getElementById('ValRequiredDropDownListForDdlFlatFloor').dispose =
function() {
Array.remove(Page_Validators,
document.getElementById('ValRequiredDropDownListForDdlFlatFloor'));
}

document.getElementById('ValRequiredDropDownListForCdlPropertyDescription').dispose
= function() {
Array.remove(Page_Validators,
document.getElementById('ValRequiredDropDownListForCdlPropertyDescription'));
}
Sys.Application.add_init(function() {
$create(Controls.CascadingDropDownListBehavior,
{"Category":"description","ClientOnBeginRequest":"","ClientOnRequestComplete":"SetPropertyTypePostEvent()","ClientStateEnabled":true,"ClientStateFieldId":"cdlPropertyDescription_ClientState","DefaultText":"--
Select --","LoadingText":"Please
Wait...","ParentControlId":"cdlPropertyType","ParentValue":null,"ServiceMethod":"GetDropDownContents","ServicePath":"/home/lookups/PropertyTypes.asmx"},
null, null, $get("cdlPropertyDescription"));
});

document.getElementById('ValRequiredTextBoxBaseForTxtYearBuilt').dispose =
function() {
Array.remove(Page_Validators,
document.getElementById('ValRequiredTextBoxBaseForTxtYearBuilt'));
}

document.getElementById('ValRangeIntegerForTxtYearBuilt').dispose =
function() {
Array.remove(Page_Validators,
document.getElementById('ValRangeIntegerForTxtYearBuilt'));
}

document.getElementById('ValRegexIntegerForTxtYearBuilt').dispose =
function() {
Array.remove(Page_Validators,
document.getElementById('ValRegexIntegerForTxtYearBuilt'));
}

document.getElementById('ValRequiredDropDownListForDdlRoofConstruction').dispose
= function() {
Array.remove(Page_Validators,
document.getElementById('ValRequiredDropDownListForDdlRoofConstruction'));
}

document.getElementById('ValRequiredDropDownListForDdlWallConstruction').dispose
= function() {
Array.remove(Page_Validators,
document.getElementById('ValRequiredDropDownListForDdlWallConstruction'));
}

document.getElementById('ValRequiredDropDownListForDdlNoOfRooms').dispose =
function() {
Array.remove(Page_Validators,
document.getElementById('ValRequiredDropDownListForDdlNoOfRooms'));
}

document.getElementById('rdoPropertyGroundMovement_ValRequiredRadioButtonListForRdoPropertyGroundMovement').dispose
= function() {
Array.remove(Page_Validators,
document.getElementById('rdoPropertyGroundMovement_ValRequiredRadioButtonListForRdoPropertyGroundMovement'));
}

document.getElementById('ValRequiredDropDownListForDdlPropertyFlooding').dispose
= function() {
Array.remove(Page_Validators,
document.getElementById('ValRequiredDropDownListForDdlPropertyFlooding'));
}

document.getElementById('ValRequiredDropDownListForDdlSmokeAlarms').dispose
= function() {
Array.remove(Page_Validators,
document.getElementById('ValRequiredDropDownListForDdlSmokeAlarms'));
}

document.getElementById('ValRequiredDropDownListForDdlNeighbourHoodWatch').dispose
= function() {
Array.remove(Page_Validators,
document.getElementById('ValRequiredDropDownListForDdlNeighbourHoodWatch'));
}

document.getElementById('ValRequiredDropDownListForDdlBurglarAlarm').dispose
= function() {
Array.remove(Page_Validators,
document.getElementById('ValRequiredDropDownListForDdlBurglarAlarm'));
}

document.getElementById('rdoKeyOperatedWindowLocks_ValRequiredRadioButtonListForRdoKeyOperatedWindowLocks').dispose
= function() {
Array.remove(Page_Validators,
document.getElementById('rdoKeyOperatedWindowLocks_ValRequiredRadioButtonListForRdoKeyOperatedWindowLocks'));
}

document.getElementById('ValRequiredDropDownListForDdlLocksExternalDoor').dispose
= function() {
Array.remove(Page_Validators,
document.getElementById('ValRequiredDropDownListForDdlLocksExternalDoor'));
}

document.getElementById('ValRequiredDropDownListForDdlPatioExternalLocks').dispose
= function() {
Array.remove(Page_Validators,
document.getElementById('ValRequiredDropDownListForDdlPatioExternalLocks'));
}

document.getElementById('ValRequiredDropDownListForDdlOtherExternalLocks').dispose
= function() {
Array.remove(Page_Validators,
document.getElementById('ValRequiredDropDownListForDdlOtherExternalLocks'));
}

document.getElementById('ValRequiredDropDownListForDdlDailyOccupancy').dispose
= function() {
Array.remove(Page_Validators,
document.getElementById('ValRequiredDropDownListForDdlDailyOccupancy'));
}
Sys.Application.add_init(function() {
$create(Controls.DataEntryContainerItemBehavior,
{"ClientStateEnabled":false,"Hidden":true}, null, null,
$get("deciNumOfConsectutiveDaysUnoccupied"));
});

document.getElementById('ValRequiredDropDownListForDdlNumOfConsectutiveDaysUnoccupied').dispose
= function() {
Array.remove(Page_Validators,
document.getElementById('ValRequiredDropDownListForDdlNumOfConsectutiveDaysUnoccupied'));
}
Sys.Application.add_init(function() {
$create(Controls.DataEntryContainerItemBehavior,
{"ClientStateEnabled":false,"Hidden":true}, null, null,
$get("deciNumAdultsAtProperty"));
});

document.getElementById('ValRequiredDropDownListForDdlNumAdultsAtProperty').dispose
= function() {
Array.remove(Page_Validators,
document.getElementById('ValRequiredDropDownListForDdlNumAdultsAtProperty'));
}
Sys.Application.add_init(function() {
$create(Controls.DataEntryContainerItemBehavior,
{"ClientStateEnabled":false,"Hidden":true}, null, null,
$get("deciNumChildrenAtProperty"));
});

document.getElementById('ValRequiredDropDownListForDdlNumChildrenAtProperty').dispose
= function() {
Array.remove(Page_Validators,
document.getElementById('ValRequiredDropDownListForDdlNumChildrenAtProperty'));
}

document.getElementById('ValRequiredDropDownListForDdlOwnershipStatus').dispose
= function() {
Array.remove(Page_Validators,
document.getElementById('ValRequiredDropDownListForDdlOwnershipStatus'));
}

document.getElementById('valOccupancyStatus').dispose = function() {
Array.remove(Page_Validators,
document.getElementById('valOccupancyStatus'));
}
// -->
</script>
</form>



<div id="msfgColRight" class="msfg-col-right">


<div id="rightadvertbar-doubleclickads">
<div id="rightAdvertBar_pnlRightAdverts">



<iframe
src="/framework/pages/doubleclickcontainer.aspx?keywords=&amp;placement=HOMEINSR1SECURE&amp;format=cube&amp;sitename=Insuresupermarket.com"
width="125" height="125" scrolling="no" frameborder="0">

</iframe><iframe
src="/framework/pages/doubleclickcontainer.aspx?keywords=&amp;placement=HOMEINSSKYSEC&amp;format=skyscraper&amp;sitename=Insuresupermarket.com"
width="120" height="600" scrolling="no" frameborder="0">

</iframe>
</div>
</div>


</div>
</div>






<ul id="footer_msfgNavigationbarFooter" class="msfg-navigationbar-footer
msfg-navigationbar-item-insurance">
<li><a id="footer_lnkContactUs"
href="http://www.moneysupermarket.com/ContactUs/">Contact&nbsp;Us</a> -
</li><li><a id="footer_lnkAboutUs"
href="http://corporate.moneysupermarket.com">Investor&nbsp;Relations</a> -
</li><li><a id="footer_lnkAwards"
href="http://www.moneysupermarket.com/awards/">Awards</a> - </li><li><a
id="footer_lnkFavorites"
onclick="addToFavs('http://www.moneysupermarket.com',
'moneysupermarket.com - Loans, Mortgages, Credit Cards');" href="#">Add to
Favourites</a> - </li><li><a id="footer_lnkCareers"
href="http://www.moneysupermarketjobs.com">Careers</a> - </li><li><a
id="footer_lnkPress"
href="http://www.moneysupermarket.com/mediacentre/pressreleases.asp">Press</a>
- </li><li><a id="footer_lnkTerms"
href="http://www.moneysupermarket.com/legal/terms.asp">Terms &amp;
Conditions</a> - </li><li><a id="footer_lnkSecurity"
href="http://www.moneysupermarket.com/security/">Security</a> - </li><li><a
id="footer_lnkAffiliates"
href="http://www.moneysupermarket.com/affiliatescheme/">Affiliates</a></li></ul>

<p id="msfg-footer-copyright">&copy; Moneysupermarket Financial Group
2008</p>



</div>








<!--BEGIN_EXCLUDE--><script type="text/javascript"
src="/framework/js/prophetinsert.js"></script><!--END_EXCLUDE-->

</body>
</html>
<!-- This is needed to fire the JS event, so the page does not have to wait
for the adverts to load using onload -->
<script type="text/javascript">
<!--//--><![CDATA[//><!--
addEvents();
//--><!]]>
</script>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top