var helper = null;
var imageName ="";
<!-- //
function showImage(imageName) {
//  if (document.infoform.Img.value != "") {
//	url = 'http://cf.ws2.korax.net/earthfiles/images/news/' + document.infoform.Img.value;
  if (imageName != "") {
       url = 'http://cf.ws2.korax.net/earthfiles/images/news/' + imageName;
	   winStats='resizable=no,toolbar=no,location=no,directories=no,menubar=no,'
       winStats+='scrollbars=yes,width=485,height=415'
   if (navigator.appName.indexOf("Microsoft")>=0) {
      winStats+=',left=20,top=25'
    }else{
      winStats+=',screenX=20,screenY=25'
    }
	if (helper && helper.open && !helper.closed) {
		helper.document.open();
		helper.document.write('<img src="'+url+'">');
		helper.document.close();
	} else {
		helper=window.open(url,"",winStats)
	}
  }
}

function displayNews(url) {
   winStats='toolbar=no,location=no,directories=no,menubar=no,'
   winStats+='scrollbars=yes,width=600,height=480'
   if (navigator.appName.indexOf("Microsoft")>=0) {
      winStats+=',left=20,top=25'
    }else{
      winStats+=',screenX=20,screenY=25'
    }
	helper=window.open(url,"",winStats)     
}

// -->
