﻿// This is a Javascript include file for the EOS template
// ------------------------------------------------------

// The text below will be written before the customer input fields on the checkout page.

// The file name can be defined in "settings.js":
// check the variable "checkoutTextfile"

// File Format:
//	This is a JavaScript file.
//	Empty lines and comments are ignored.
//	A comment is all text after a //
//	All other lines must contain valid Javascript code.

// keep this line
document.write("<div class='checkoutinfo'>")

// start your text here
// Note: If you need to write a " within the text then use \"
document.write("Please note that prices are subject to change without notice.")
document.write("<br><br>")	// empty line
document.write("Please enter your name and address in the fields below.<br>")
document.write("If you do not want to send your credit card details over the<br>")
document.write("internet then press E-Mail button & phone us with your Credid/Debit Card Details.<br>")


// keep this line
document.write("</div>")

