﻿// JScript File

if(navigator.appName == "Microsoft Internet Explorer") {
                                                                        
    var str = '';
    str += '<table border="0" cellpadding="0" cellspacing="0" style="margin-left:34px; margin-top:10px; margin-bottom:10px;">';
    str += '<tr>';
    str += '<td><input id="cboHR" type="checkbox" onfocus="blur()" /></td>';
    str += '<td style="width:34px;" align="left">.hr</td>';
    str += '<td><input id="cboCOM" type="checkbox" onfocus="blur()" /></td>';
    str += '<td style="width:34px;" align="left">.com</td>';
    str += '<td><input id="cboNET" type="checkbox" onfocus="blur()" /></td>';
    str += '<td style="width:34px;" align="left">.net</td>';
    str += '</tr>';
    str += '<tr>';
    str += '<td><input id="cboORG" type="checkbox" onfocus="blur()" /></td>';
    str += '<td style="width:34px;" align="left">.org</td>';
    str += '<td><input id="cboBIZ" type="checkbox" onfocus="blur()" /></td>';
    str += '<td style="width:34px;" align="left">.biz</td>';
    str += '<td><input id="cboINFO" type="checkbox" onfocus="blur()" /></td>';
    str += '<td style="width:34px;" align="left">.info</td>';
    str += '</tr>';
    str += '<tr>';
    str += '<td><input id="cboCOMHR" type="checkbox" onfocus="blur()" /></td>';
    str += '<td colspan="5" style="width:34px;" align="left">.com.hr</td>';
    str += '</tr>';
    str += '</table>';
    document.write(str);
    
} else {

    var str = '';
    str += '<table border="0" cellpadding="0" cellspacing="0" style="margin-left:35px; margin-top:10px; margin-bottom:10px;">';
    str += '<tr>';
    str += '<td style="padding:3px;"><input id="cboHR" type="checkbox" onfocus="blur()" /></td>';
    str += '<td style="width:34px;" align="left">.hr</td>';
    str += '<td style="padding:3px;"><input id="cboCOM" type="checkbox" onfocus="blur()" /></td>';
    str += '<td style="width:34px;" align="left">.com</td>';
    str += '<td style="padding:3px;"><input id="cboNET" type="checkbox" onfocus="blur()" /></td>';
    str += '<td style="width:34px;" align="left">.net</td>';
    str += '</tr>';
    str += '<tr>';
    str += '<td style="padding:3px;"><input id="cboORG" type="checkbox" onfocus="blur()" /></td>';
    str += '<td style="width:34px;" align="left">.org</td>';
    str += '<td style="padding:3px;"><input id="cboBIZ" type="checkbox" onfocus="blur()" /></td>';
    str += '<td style="width:34px;" align="left">.biz</td>';
    str += '<td style="padding:3px;"><input id="cboINFO" type="checkbox" onfocus="blur()" /></td>';
    str += '<td style="width:34px;" align="left">.info</td>';
    str += '</tr>';
    str += '<tr>';
    str += '<td style="padding:3px;"><input id="cboCOMHR" type="checkbox" onfocus="blur()" /></td>';
    str += '<td colspan="5" style="width:34px;" align="left">.com.hr</td>';
    str += '</tr>';
    str += '</table>';
    document.write(str);

}