function bigview(filename)
{
  window.open(filename+'.jpg', 'PhotoView','resizable=1,height=510,width=680,status=yes,toolbar=no,scrollbars=yes');
}




function doShowHideObject(id) {
	if (document.getElementById) {
		var object = document.getElementById(id);
	} else if (document.all) {
		var object = document.all[id];
	}
  
	if (object) {
		if ('block' != object.style.display) {
			object.style.display = 'block';
		} else {
			object.style.display = 'none';
		}
	}
}

function previewArticle(title_name, body_name)
{
  wnd = window.open("about:blank", "preview", "height=600, width=900, resizable=yes, menubar=yes, toolbar=yes, scrollbars=yes");
  
  wnd.document.open();
  wnd.document.charset = "windows-1251";
  wnd.document.write("<html>");
  wnd.document.write("<head>");
  wnd.document.write('<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">');
  wnd.document.write("</head><body>");

  wnd.document.write("<div style='display:none;'><form method='POST' action='/preview'>");
  wnd.document.write("<textarea type=text name='body'></textarea>");
  wnd.document.write("<textarea type=text name='title'></textarea>");
  wnd.document.write("</form></div>");
  wnd.document.close();
  
  wnd.document.forms[0].body.value = document.forms[0].elements[body_name].value;
  wnd.document.forms[0].title.value = document.forms[0].elements[title_name].value;
  wnd.document.forms[0].submit();
}
