﻿//**************************************************
// ORIGINAL MF THUMBNAIL HANDLER
//**************************************************

//**************************************************
function BigImg1(ARI,IMI)
{
	var rndm = "thumb" + Math.floor(1000000*Math.random());
	var wa = window.open("/ShowFullThumbNailOldDigi2.aspx?ari=" + ARI + "&imi=" + IMI.replace("x","/"), rndm,'status=1, tollbar=0');
}
//**************************************************
function BigImg(ARI,IMI)
{
	var rndm = "thumb" + Math.floor(1000000*Math.random());
	var img = IMI;
	if (img.indexOf("x") == 0){
		img = img.replace("x", "/");
	}
	var wa = window.open("/ShowFullThumbNailOldDigi.aspx?ari=" + ARI + "&imi=" + ARI + img, rndm,'status=1, tollbar=0');
}
//**************************************************
function BigImgGal(IMI)
{
	var rndm = "thumb" + Math.floor(1000000*Math.random());
	var wa = window.open("/ShowFullThumbNailOldDigi.aspx?imi=" + IMI, rndm,'status=1, tollbar=0');
}


//**************************************************
// FULL SIZE IMAGE HANDLER
//**************************************************

//**************************************************
function ShowFullThumbNail(id_file, width, height, title, IdArticle, action)
{
  	window.open("/ShowArticleImages.aspx?id_file=" + id_file + (IdArticle!=null ? "&article=" + IdArticle : ""),"fullImage", "resizable=yes,scrollbars=no,status=yes,width=800,height=640");
	return false;
}
//**************************************************
function ShowArticleImage(id_article,id_file, width, height, title, action)
{
	return ShowFullThumbNail(id_file, width, height, title, id_article, action);
}
