// JavaScript Document
function show_img(img,width,height,adm,feat)
{
	
   var a
   var b
   var url
   vidWindowWidth=width;
   vidWindowHeight=height;
   a=(screen.height-vidWindowHeight)/5;
   b=(screen.width-vidWindowWidth)/2;
   
   if (feat == true) {
	   features="top="+a+",left="+b+",width="+vidWindowWidth+",height="+vidWindowHeight+",toolbar=no,menubar=no,location=no,directories=no,scrollbars=yes,resizable=yes";
   }
   else {
	   features="top="+a+",left="+b+",width="+vidWindowWidth+",height="+vidWindowHeight+",toolbar=no,menubar=no,location=no,directories=no,scrollbars=no,resizable=no";
   }
   
   if (adm=='true') url = img;
   window.open(url,'',features,true);
}

function close_div(elem) {
	document.getElementById(elem).style.display = 'none';
}
function img_div(elem, path, title) {
	//alert(document.documentElement.scrollTop);
	var scroll_Top = document.documentElement.scrollTop + 100;
	var _img = document.getElementById(elem);
	//alert('<img src="'+path+'" />');
	_img.style.top = scroll_Top;
	_img.style.display = 'block';
	_img.innerHTML = '<center><img onclick="close_div(\'si\');" src="'+path+'" style="cursor:hand;" /><br /><span class="">'+title+'</span></center>';
}
