var menuDisabler 	= null;
var activeMenu		= null;

//***********************************
function HideMenuNow(){
	 if(activeMenu!=null){
	 	var oObj 	= document.getElementById("mn" + activeMenu);
		if(oObj){
			oObj.style.visibility="hidden";
		}
		activeMenu = null;
	 }
	 if(menuDisabler!=null){
	 	clearTimeout(menuDisabler);
		menuDisabler = null;
	 }
}
//***********************************
function ShowMenu(which, oParent){
	if(which!=activeMenu){
		HideMenuNow();
		var oObj = document.getElementById("mn" + which);
		if(oObj){
			oObj.style.left = (oParent.offsetLeft-6) + "px";
			oObj.style.visibility="visible";
			activeMenu = which;
		}
	}else{
		HideMenu();
	}
}
//***********************************
function HideMenu(){
	if(menuDisabler!=null){
	 	clearTimeout(menuDisabler);
		menuDisabler = null;
	}
	
	menuDisabler = setTimeout("HideMenuNow()", 1000);
}
//**************************************************
function InsSm(which){
	var oObj = document.getElementById("Editor");
	if(oObj){
		oObj.value += which;
	}else{
		if(typeof(mailerEditor)!="undefined"){
			mailerEditor.value += which;
		}
	}
}
//**************************************************
function runMailClient(mMail){
	if(!mMail) return;
	var eAdd = new String("") + mMail.replace(" zavinac ", "@");
	eAdd = eAdd.replace(/\$/igm, ".");
	document.location = "mailto:" + eAdd;
	
}
//**************************************************
// FULL SIZE IMAGE HANDLER
//**************************************************
function ShowFullThumbNail(id_file, width, height, title, action){
  if (action != null){
    window.open("/ShowFullThumbNail.aspx?id_file=" + id_file + "&width=" + width + "&height=" + height + "&title=" + title + "&" + action.replace("|", "&"),"fullImage" + id_file, "scrollbars=no,status=yes,width=" + width + ",height=" + height);
  }else{
    window.open("/ShowFullThumbNail.aspx?id_file=" + id_file + "&width=" + width + "&height=" + height + "&title=" + title,"fullImage" + id_file, "scrollbars=no,status=yes,width=" + width + ",height=" + height);
  }
  return false;
}
//**************************************************
function ShowArticleImage(id_file, width, height, title, action){
  if(ArImage && (action != null) && (action.indexOf("slideshow=1") > -1) && (typeof(isTxVer)=="undefined" || !isTxVer)){
    window.open("/ShowArticleImages.aspx?file=" + id_file + "&article=" + ArImage + "&" + action.replace("|", "&"), "fullImage" + id_file, "scrollbars=no,status=yes,width=800,height=600");
  }else{
    return ShowFullThumbNail(id_file, width, height, title, action);
  }
  return false;
}
