// Function to allow one JavaScript file to be included by another.
// Copyright (C) 2006 www.cryer.co.uk
function IncludeJavaScript(jsFile)
{
  document.write('<script type="text/javascript" src="' + jsFile + '"></script>'); 
}

IncludeJavaScript("/common/js/z_common.js");
IncludeJavaScript("/common/js/ajaxBasics.js");