//© Atwork.lv
function topic_del (url)
{
if(confirm(langTrans("blogs.post.rem")))
	{
		location.replace(url);
	}
	else
	{
		return false;
	}
}
function file_del (url)
{
if(confirm(langTrans("blogs.comments.file.rem")))
	{
		location.replace(url);
	}
	else
	{
		return false;
	}
}

function openCard(page,h,w,name) {
	sm=window.open(page, name,"resizable=no , height="+h+", width="+w);
	sm.focus();
	sm.moveTo(screen.width/2-400,screen.height/2-300);
}