function print(elementId)
{
 var printContent = document.getElementById(elementId);
 var windowUrl = 'about:blank';
 var uniqueName = new Date();
 var windowName = 'Print' + uniqueName.getTime();

 var printWindow = window.open(windowUrl, windowName, '');
 
 printWindow.document.write('<img height="61" border="0" width="228" class="logo" src="http://i.biz-gid.com/img/layout/top/logo_ukrainian.gif"/><br /><style>#sort42{display:none;} #hide_when_print{display: none;} #rate{display: none;} #hrhr{display: none;}</style>'+printContent.innerHTML+'<input type="button" value="Печать" onclick="this.style.visibility=\'hidden\'; window.print();window.close()">');
 printWindow.document.close();
 printWindow.focus();
}

function send_hidden(id)
{
YAHOO.example.container.panel1.show();
}
function init() {
YAHOO.namespace("example.container");
YAHOO.example.container.panel1 = new YAHOO.widget.Panel("panel1", { width:"520px", visible:false, constraintoviewport:true , fixedcenter: true} );
YAHOO.example.container.panel1.setHeader("Отправка письма");
YAHOO.example.container.panel1.setBody('<iframe src="sendmail.php?zkpo=<!--{$data.enterprise.zkpo}-->" width="500" height="530" frameborder="0" align="center"></iframe>');
YAHOO.example.container.panel1.render("container");
}
YAHOO.util.Event.addListener(window, "load", init);