function setCookie(name, value, expires, path, domain, secure) {
 document.cookie = name + "=" + escape(value) +
 ((expires) ? "; expires=" + expires : "") +
 ((path) ? "; path=" + path : "") +
 ((domain) ? "; domain=" + domain : "") +
 ((secure) ? "; secure" : "");
}

function showImage(title,image_src,width,height){
 var top = Math.floor((screen.height-height)/2);
 var left = Math.floor((screen.width-width)/2);
 params = "top="+top+",left="+left+",width="+width+",height="+height+",status=no,toolbar=no,menubar=no,location=no,directories=no,scrollbars=no";
 popupWin = window.open("","popupWin",params);
 popupWin.focus();
 popupWin.document.open();
 popupWin.document.write("<html><head><title>"+title+"</title></head>");
 popupWin.document.write("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
 popupWin.document.write("<img src='"+image_src+"' border='0' name=si></body></html>");
 popupWin.document.close();
}

function showImagePrint(title,image_src,width,height){
 var top = Math.floor((screen.height-height)/2);
 var left = Math.floor((screen.width-width)/2);
 params = "top="+top+",left="+left+",width="+width+",height="+height+",status=no,toolbar=no,menubar=no,location=no,directories=no,scrollbars=no";
 popupWin = window.open("","popupWin",params);
 popupWin.focus();
 popupWin.document.open();
 popupWin.document.write("<html><head><style>@media screen {.print_bl {position: absolute; right: 0px; bottom:0px; cursor:pointer; text-align:center; width: 150px; background-color: white;} .print_bl:hover{text-decoration:underline;}}"+
 "@media print {.print_bl{display:none;}}</style><title>"+title+"</title></head>");
 popupWin.document.write("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
 popupWin.document.write("<div align='center'><div class='print_bl' onclick='window.print()'>Печать</div><img src='"+image_src+"' border='0' name=si></div></body></html>");
 popupWin.document.close();
}
