// JavaScript Document

// showing help function
function ShowHelp(elId, title, desc) {
  el = document.getElementById(elId);
	el.innerHTML =	'<div class="helptext"><b>' +	title +	'</b><br>' + desc + '</div>';
	el.style.display =	'inline';
	el.style.zindex =	3;
}

// hiding help function
function HideHelp(elId) {
  el = document.getElementById(elId);
  el.style.display = 'none';
}	 

// showing help function  - pop-ups window
function ShowHelp2(elId, title, desc, width, height) {
  nw = window.open('', 'help', 'menubar=no,resizable=yes,location=no,scrollbars=no,width='+width+',height='+height);
  nw.document.clear();
  nw.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'+
                    '<html xmlns="http://www.w3.org/1999/xhtml">'+
                    '<head>'+
                    '<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />'+
                    '<title>Mastitis Focus Help</title>'+
                    '<style type="text/css">'+
                    '<!--'+
                    '  .style1 {font-family: Arial, Helvetica, sans-serif}'+
                    '  .style2 {font-size: 12px}'+
                    '-->'+
                    '</style>'+
                    '</head>'+
                    '<body>'+
                    '<table border="8" cellpadding="4" bordercolor="#f5c536">'+
                    '<tr>'+
                    '<td>'+
                    '<div><span class="style1"><strong>'+title+'</strong><br />'+
                    '<span class="style2">'+desc+'<br />'+
                    '</span><br />'+
                    '<div align="center"><span class="style1"><a href="javascript:window.close();">Close</a></span></div></td>'+
                    '</tr>'+
                    '</table>'+
                    '</body>'+
                    '</html>');
  
  //'<html><head><title>'+title+'</title><style>.helptext {font-family:Verdana, Arial, Helvetica, sans-serif;font-size:8pt;background-color: #CAFCC9;}</style></head>'+
  //                  '<body class="helptext"><div><b>'+title+'</b><br>'+desc+'</div><br /><br />'+
  //                  '<div align="center"><a href="javascript:window.close();">Close</a></div></body></html>');
  nw.document.close();
}