
/* 
 * Plagium - (c) Septet Systems 2004-2009
 */

function include_script(script_filename) {
	var rnumber = Math.floor(Math.random()*9999999);
    document.write('<' + 'script');
    document.write(' language="javascript"');
    document.write(' type="text/javascript"');
    document.write(' src="' + script_filename + '?r='+rnumber+'">');
    document.write('</' + 'script' + '>');
};

function include_dom(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;
};

// Generic
include_script('/swfs/amxy_1.6.1.2/amxy/swfobject.js');
include_script('/js/date.js');

// Ajax
_ajaxConfig = {'_cfscriptLocation':'/cfc/oplagium.cfc', '_jsscriptFolder':'/javascript/ajax/old'};
include_script('/javascript/ajax/old/gh_ajax.js');


	