function fCheckDescriptionField()
{
    var selI = document.getElementById('ddlMachine').selectedIndex;
    var des = document.getElementById('txtDescription');
    if (selI > 0)
    {
        des.setAttribute('disabled', 'disabled');
        des.setAttribute('style', 'width: 240px; background-color: #EEEEEE');
        des.value = '';
    }
    else
    {
        des.removeAttribute('disabled');
        des.setAttribute('style', 'width: 240px;');
    }
}

function fGoToCountry(url)
{
    var selI = document.getElementById('ddlCountry').selectedIndex;
    if ((selI > 0) && (url != ''))
    {
        var selID = document.getElementById('ddlCountry').value;
        var target = 'div' + selID
        window.location.href = url + '#' + target;
    }
}

function fPrint_Company(id)
{
   div1 = document.getElementById(id);
   var content1 = div1.innerHTML;
   content1 = content1.replace('<td align="right">', '<td style="display:none;">')
   
   var cont1 = '<html><head><title>Print Page</title></head><body style="width: 505px;">'
   +'<link rel="stylesheet" type="text/css" href="/DMP/printFLO/contentFLO/Link.aspx?clientID=18&amp;siteID=17&amp;pageID=4299&amp;stylesheetID=69" media="All">'
   +'<script language="javascript">print();</script>'
   +'<div id="divPrintContent1" style="width:500;padding:20px;"><div id="divCompanyPreview">';
   
   var cont2 = '<div></div></form></body></html>';
      
   top.consoleRef=window.open('/dmp/printflo/content/18/17/Print.aspx','myconsole','width=600,height=500,top=50,left=50,menubar=1,toolbar=0,status=0,scrollbars=1,resizable=1')
   top.consoleRef.document.writeln(cont1 + content1 + cont2)
   top.consoleRef.document.close()
}
