function pokazEmail(k3, k2, k1) {
	s=k1+'@'+k2+'.'+k3;
	document.write('<a href="mailto:' + s + '">' + s + '</a>');
}

function openGallery(install_path, id_gallery, image_pos) {
	var img_width = 640;
	var img_height = 640;
	var w = img_width + 20;
	var h = img_height + 40;
	var l = screen.width/2 - w/2;
	var t = screen.height/2 - h/2;
	
	window.open(install_path+'/gallery.php?id_page_element='+id_gallery+'&image_pos='+image_pos +'&width='+img_width+'&height='+img_height , 'galeria', 
	'menubar=no, toolbar=no, location=no, scrollbars=no, resizable=no, status=no, width='+w+', height='+h+', left='+l+', top='+t);	
	return false;
}

function getCookie(c_name)
{
if (document.cookie.length>0)
  {
  c_start=document.cookie.indexOf(c_name + "=");
  if (c_start!=-1)
    {
    c_start=c_start + c_name.length+1;
    c_end=document.cookie.indexOf(";",c_start);
    if (c_end==-1) c_end=document.cookie.length;
    return unescape(document.cookie.substring(c_start,c_end));
    }
  }
return "";
}

function setCookie(c_name,value,expiredays)
{
var exdate=new Date();
exdate.setDate(exdate.getDate()+expiredays);
document.cookie=c_name+ "=" +escape(value)+
((expiredays==null) ? "" : ";expires="+exdate.toUTCString());
}



