<!-- Begin Javascript
// MY SCRIPTS
// Use this area to add new scripts that you need for your site

//function to import an external javascript on demand. 
function $import(src){
  var scriptElem = document.createElement('script');
  scriptElem.setAttribute('src',src);
  scriptElem.setAttribute('type','text/javascript');
  document.getElementsByTagName('head')[0].appendChild(scriptElem);
}
////////////////////re-loads an image ////////////////////////////////
// imgId - is the id of the image
// src - is the new source url of the image
  function reloadImage(imgId,src) {
  	var srcurl=src+'&nc='+new Date().getTime();
        document.getElementById(imgId).src = srcurl;
    }
    
    function reloadImage() {
    	var srcurl='/public.ejs?command=PublicCaptcha&nc='+new Date().getTime();
    	document.getElementById('cptImg').src = srcurl;
    }
 //////////////////////////////////////////////////////////////////  
// End Javascript -->