	function eh(msg) {
		alert('Error [' + msg + ']');
	}
	
	function useLoadingImage(imageSrc) {
	  var loadingImage;
	  if (imageSrc) loadingImage = imageSrc;
	  else loadingImage = "ajax-loader.gif";
	  DWREngine.setPreHook(function() {
	    var disabledImageZone = $('disabledImageZone');
	    if (!disabledImageZone) {
        disabledImageZone = document.createElement('div');
	       disabledImageZone.setAttribute('id', 'disabledImageZone');
	      disabledImageZone.style.position = "absolute";
	      disabledImageZone.style.zIndex = "1000";
	      disabledImageZone.style.left = "0px";
	      disabledImageZone.style.top = "0px";
	      disabledImageZone.style.width = "100%";
        disabledImageZone.style.height = "100%";
		  var imageZone = document.createElement('img');
	      imageZone.setAttribute('id','imageZone');
	      imageZone.setAttribute('src',imageSrc);
	      imageZone.style.position = "absolute";
	      imageZone.style.top = "100px";
	      imageZone.style.right = "50%";
	      imageZone.style.width = "180px";
	      imageZone.style.height = "40px";				
	      disabledImageZone.appendChild(imageZone);
	      document.body.appendChild(disabledImageZone);
	    }
	    else {
	      $('imageZone').src = imageSrc;
	      disabledImageZone.style.visibility = 'visible';
	    }
	  });
	  DWREngine.setPostHook(function() {
	    $('disabledImageZone').style.visibility = 'hidden';
	  });
	}

	function openPhoto (url) {
		win = window.open(url,'OpenNewWin','scrollbars=yes,resizable=yes, width=400, height=350');
		win.focus();
	}

// last news - scrolling message
function scrollmarquee(){
  if (parseInt(cross_marquee.style.top)>(actualheight*(-1)+8))
    cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px"
  else
   cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
}

function initializemarquee(){
  cross_marquee=document.getElementById("vmarquee")
  if ( cross_marquee ) {
    cross_marquee.style.top=0
    marqueeheight=document.getElementById("marqueecontainer").offsetHeight
    actualheight=cross_marquee.offsetHeight
    if (window.opera || navigator.userAgent.indexOf("Netscape/7")!=-1){ //if Opera or Netscape 7x, add scrollbars to scroll and exit
      cross_marquee.style.height=marqueeheight+"px"
      cross_marquee.style.overflow="scroll"
      return
    }
    setTimeout('lefttime=setInterval("scrollmarquee()",30)', delayb4scroll)
  }
}

if (window.addEventListener)
  window.addEventListener("load", initializemarquee, false)
else if (window.attachEvent)
  window.attachEvent("onload", initializemarquee)
else if (document.getElementById)
  window.onload=initializemarquee	
