// ********************************************
// User Defined Settings                      *
// ********************************************
// settings.js


// no right click !!!
document.onmousedown=click

function click() {
if ((event.button==2) || (event.button==3))
 { alert("Thank you for visiting Prince Albert Parkland Health Region"); }
}

// Debug Mode. Setting DEBUG to true will allow
// you to see descriptions of errors in a window.
// You should probably set this to false
// when you run the cart live
var DEBUG       = true;

// set your company information here. This will all
// generated on the printable form
var myName      = 'Prince Albert Parkland Health Region';
var mySite      = '';
var myEmail     = '';
var myPhone     = '';
var myAddress   = '';
var myCityState = 'Prince Albert, Sask.';
var myZip       = '';
var myCountry   = 'Canada';
var myLogo      = '';
var myMotto     = '';

// this is your prefix for all cookies written by your
// implementation of the cart. Do not use spaces!
var myStoreName    = 'Prince Albert Parkland Health Region';

// set the font face to whatever font you're using on your site
// Default setting is "arial,helvetica"
var fontFace = 'Verdana,Arial,Helvetica';
var myFont = 'Verdana,Arial,Helvetica';

var backText           = '&lt; Back';
var closeText          = 'Close';
var clearFormText      = 'Clear Comments';
var copyrightmessage    =  '&copy; 2003 All Rights Reserved';

