﻿//**************************************************
function gObject(oName){
	return document.getElementById(oName);
}
//**************************************************
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){
	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, id_article){
	if(arguments.length==4 || !ArImage){
		return ShowFullThumbNail(id_file, width, height, title)
	}else{
		window.open("/ShowArticleImages.aspx?file=" + id_file + "&article=" + ArImage, "fullImage" + id_file, "scrollbars=no,status=yes,width=800,height=600");
		return false;
	}
}
