// JavaScript Document
function PercentbyResolution()
{ var IString = "";
if (screen.width<1024)
  {
  IString = "62"
  }
else if (screen.width>=1024 && screen.width<1152)
  {
  IString = "71"
  }
else if (screen.width>=1152 && screen.width<1280)
  {
  IString = "77"
  }
else if (screen.width>=1280 && screen.width<1440)
  {
  IString = "77"
  }
else if (screen.width>=1440 && screen.width<1600)
  {
  IString = "79";
  } 
else if (screen.width>=1600)
  {
  IString = "81";
  }  
else
  {
  IString = "71";
  }
return parseInt(IString)
}