<?xml        version="1.0"   encoding="UTF-8" ?>
<Module>
<ModulePrefs title="Byte Converter"
             title_url="http://my-google-gadgets.blogspot.com/"
             category="tools"
             description="The Byte Converter automatically converts byte into kilobyte, megabyte, gigabyte etc. You can test the tool here: http://atat.ro/page.php?79"
             author="Yeno"
             author_email="the.gadget.architect@gmail.com"
             author_photo="http://portal.romanesc.googlepages.com/sumotv.gif" 
             author_aboutme="I just love building gadgets" 
             author_link="http://my-google-gadgets.blogspot.com/" 
             author_quote="Never argue with an idiot. They'll bring you down to their level, then beat you with experience"
             screenshot="http://atat.ro/utile/byte_google.png"
             thumbnail="http://atat.ro/utile/byte_google.png"
             author_location="GR"
             author_affiliation="PortalRomanesc"             
             height="220"             
             width="230">
</ModulePrefs>
<!--  -->
<Content type="html"><![CDATA[
<Html>

<center>
  <font face="Arial, Helvetica, sans-serif">
<script language="JavaScript"><!--

  function convert(f) {

    f.kb.value=Math.round(f.byte.value/1024*100000)/100000

    f.mb.value=Math.round(f.byte.value/1048576*100000)/100000

    f.gb.value=Math.round(f.byte.value/1073741824*100000)/100000

     

  }



function convertkb(f) {

    f.byte.value=Math.round(f.kb.value*1024*100000)/100000

    f.mb.value=Math.round(f.kb.value/1024*100000)/100000

    f.gb.value=Math.round(f.kb.value/1048576*100000)/100000

     

  }



function convertmb(f) {

    f.byte.value=Math.round(f.mb.value*1048576*100000)/100000

    f.kb.value=Math.round(f.mb.value*1024*100000)/100000

    f.gb.value=Math.round(f.mb.value/1024*100000)/100000
    

  }


function convertgb(f) {

    f.byte.value=Math.round(f.gb.value*1073741824*100000)/100000

    f.kb.value=Math.round(f.gb.value*1048576*100000)/100000

    f.mb.value=Math.round(f.gb.value*1024*100000)/100000
   

  }


// --></script>
<center><iframe border=0 frameborder=0 height=60 marginheight=0 marginwidth=0 name=explain scrolling=no src=http://atat.ro/about.html title=Proxy width=234></iframe></center>

  <form>
  <table border="1" cellpadding="3" cellspacing="3" bordercolordark="#FFFFFF" width="191">
    <tr> 
      <td align="center"> 
        &nbsp;<input type="button" name="B2" value="      Byte     "
        onClick="convert(this.form)"></td>

      <td align="center"> 

        <input type="text" size="10"

        name="byte" value="0"></td>
    </tr>

    <tr> 

      <td align="center"> 

        <input type="button" name="B22" value=" Kilobyte   "

        onClick="convertkb(this.form)"></td>
      <td align="center"> 

        <input type="text" size="10"

        name="kb" value="0"></td>

    </tr>

    <tr> 

      <td align="center"> 

        <input type="button" name="B23" value="Megabyte"

        onClick="convertmb(this.form)"></td>

      <td align="center"> 

        <input type="text" size="10"

        name="mb" value="0"></td>

    </tr>

    <tr> 

      <td align="center"> 

        <input type="button" name="B24" value=" Gigabyte "

        onClick="convertgb(this.form)"></td>

      <td align="center"> 

        <input type="text" size="10"

        name="gb" value="0"></td>

    </tr>

    </table>
</form>

</center>



</html>
]]></Content>
</Module>








