// Contains links to all JS-source that could be used across hole site



/**********  TRACING RELATED ***********/
var TRACING = 0;

function trace( msg ){
  if( typeof( jsTrace ) != 'undefined' ){
    jsTrace.send( msg );
  }
}

/***************** MISC ****************/
function IncludeJavaScript(jsFile)
{
  document.write('<script type="text/javascript" src="'
    + jsFile + '"></script>'); 
}
//IncludeJavaScript('js2.js');


/************ ARRAY UTILS **************/
Array.prototype.remove=function(s){
  for(i=0;i<this .length;i++){
    if(s==this[i]) this.splice(i, 1);
  }
}


if (typeof(Sys) !== 'undefined') Sys.Application.notifyScriptLoaded();
