//*--------------------------
//	willwebdesign.js
// 	Include All Will Web Scripts
//	Created By Willwebdesign
//	CopyWrite Will George
//*--------------------------

function include_script(script_filename) {
    var html_doc = document.getElementsByTagName('head').item(0);
    var js = document.createElement('script');
    js.setAttribute('language', 'javascript');
    js.setAttribute('type', 'text/javascript');
    js.setAttribute('src', script_filename);
    html_doc.appendChild(js);
    return false;
}

//Start Including Scripts
var baseLocation = 'Http://root.willwebdesign.co.uk/Scripts/';
include_script(baseLocation + 'keyKode.js');
include_script(baseLocation + 'AC_RunActiveContent.js');
