function furl()
{
var vpag = location.pathname;
var varray = vpag.split('.');
location.href = varray[0]+'_e.'+varray[1];
}


function furl_e()
{
var vpag = location.pathname;
var vpag2 = vpag.replace('_e','');
location.href = vpag2;
}


function fharta(vtitlu,vnume)
{
popup = window.open("","_","height=600,width=800,scrollbars=yes,resizable=yes,screenX=0,screenY=0");
popup.document.write('<title>'+vtitlu+'</title><img src="images/'+vnume+'">');
popup.document.close();
}


function ftext(vtitlu,vtext)
{
popup = window.open("","_","height=600,width=750,scrollbars=yes,resizable=yes,screenX=0,screenY=0");
popup.document.write('<html><head><title>'+vtitlu+'</title><link rel="stylesheet" href="css/arh_sef.css"></head><body>'+vtext+'</body></html>');
popup.document.close();
}