function print_in_window(w, h, name){
text = document.getElementById('result').innerHTML;
htext = document.getElementById('hresult').innerHTML;
printwin = open('', 'printwin',  'width='+w+',height='+h+',scrollbars=yes');
printwin.document.open();
printwin.document.writeln('<html><head><title>'+name+'</title><meta http-equiv="content-type" content="text/html; charset=UTF-8"></head><link href="/template/skin/print.css" type="text/css" rel="stylesheet"><link rel="stylesheet" type="text/css" href="/js/highslide/highslide.css" /></head><body><div style="margin: 0px 0px 0px 0px">');
printwin.document.writeln('<h1>');
printwin.document.writeln(htext);
printwin.document.writeln('</h1><br>');
printwin.document.writeln(text);
printwin.document.writeln('<center><input type="button" value="Распечатать" class="bbcodes" onclick="javascript:window.print();"></div></body></html>');
printwin.document.close();
}

function confirmdelete(url){
	var agree=confirm("Вы уверены что хотите удалить эту запись?");
	if (agree)
	document.location=url;
}
function confirmtxt(url, text){
	var agree=confirm(text);
	if (agree)
	document.location=url;
}
function confirmdecline(url){
	var agree=confirm("Вы уверены что хотите отказаться?");
	if (agree)
	document.location=url;
}

function openClose(id)
{
var obj = "";
var imgobj = "";
var imgid = id+"-img";

if(document.getElementById){
obj = document.getElementById(id).style;
imgobj = document.getElementById(imgid);
}
else if(document.all){
obj = document.all[id];
imgobj = document.all[imgid];
}
else if(document.layers){
obj = document.layers[id];
imgobj = document.layers[imgid];
}
else{
return 1;
}

// Do the magic :)
if(obj.display == ""){
 obj.display = "none";
 imgobj.src="/template/skin/images/spoiler_plus.gif";
 imgobj.alt="+ Открыть";
// divobj.innerHTML = "&nbsp;&nbsp;<img src='http://forum.rttw.ru/style_images/rttw/spoiler_plus.gif' border=0 alt='+ Открыть' id='"+imgid+"'>&nbsp;&nbsp;скрытый текст";
}
 else if(obj.display != "none")
{
 obj.display = "none";
 imgobj.src="/template/skin/images/spoiler_plus.gif";
 imgobj.alt="+ Открыть";
// divobj.innerHTML = "&nbsp;&nbsp;<img src='http://forum.rttw.ru/style_images/rttw/spoiler_plus.gif' border=0 alt='+ Открыть' id='"+imgid+"'>&nbsp;&nbsp;скрытый текст (развернуть)";

}
else
{
 obj.display = "block";
 imgobj.src="/template/skin/images/spoiler_minus.gif";
 imgobj.alt="- Закрыть";
// divobj.innerHTML = "&nbsp;&nbsp;<img src='http://forum.rttw.ru/style_images/rttw/spoiler_minus.gif' border=0 alt='- Закрыть' id='"+imgid+"'>&nbsp;&nbsp;скрытый текст (свернуть)";

}


}
