<!-- Beechwoods Conveyancing script -->
<!-- Version 01.00.00 -->
<!-- Date: March 2009 -->
<!-- Author: Neil -->
<!-- Copyright: Copyright 2009 Janet Systems Ltd. -->
<!-- URL: http://www.janetsystems.co.uk -->
//don't forget the semi-colon at the end of each variable declaration


//Stamp Duty
// There are 4 ranges for stamp duty.
//Set the value for the less than value, a pound will be added to this value for the other test.
//for example:
//if(houseAmount<StampDuty_l1) ;
//if(houseAmount>StampDuty_l1 + 1 && houseAmount<StampDuty_l2) ;
//if(houseAmount>StampDuty_l2 + 1 && houseAmount<StampDuty_l3);
//if(houseAmount>StampDuty_l3 + 1 );
var StampDuty_l1 = 175000.00;
var StampDuty_l2 = 250000.00;
var StampDuty_l3 = 500000.00;
//Modifier values for Stamp Duty, these are a factor of the house price.
//enter value as percentage
var StampDuty_v1 = 0;
var StampDuty_v2 = 1;
var StampDuty_v3 = 3;
var StampDuty_v4 = 4;
    
//Land Registry
var LandRegistry_1 = 50000.00;
var LandRegistry_2 = 80000.00;
var LandRegistry_3 = 100000.00;
var LandRegistry_4 = 200000.00;
var LandRegistry_5 = 500000.00;
var LandRegistry_6 = 1000000.00;
//Modifier values for Land Registry, these are an absolute value.
var LandRegistry_v1 = 80.00;
var LandRegistry_v2 = 130.00;
var LandRegistry_v3 = 200.00;
var LandRegistry_v4 = 280.00;
var LandRegistry_v5 = 550.00;
var LandRegistry_v6 = 920.00;

//VAT
//enter value as a percentage
var VATrate = 17.5;

//Office Copy
var OfficeCopy = 280.00

//Bankruptcy Searches

//Fees Selling
var Fees_Selling = 549.00;

//Fees Buying 
var Fees_Buying = 549.00;

//Telegraphic Transfer
var TelegraphicTransfer = 12;

//Bankruptcy Searches
var BankruptcySearches = 2;

//Land Registry - new owner
var NewOwner = 0;

//Office Charges
var NewOwner = 6;

//Land Registry Searches 
var LandRegistrySearches  = 4;
