function usc()
{
//11
var ranNum= Math.round(Math.random() * 11);
if (ranNum == 0){document.write('
'); } // 8
if (ranNum == 1){document.write('
'); } // 18
if (ranNum == 2){document.write('
'); } // 1
if (ranNum == 3){document.write('
'); } // 2
if (ranNum == 4){document.write('
'); } // 3
if (ranNum == 5){document.write('
'); } // 4
if (ranNum == 6){document.write('
'); } // 5
if (ranNum == 7){document.write('
'); } // 6
if (ranNum == 8){document.write('
'); } // 7
if (ranNum == 9){document.write('
'); } // 11
if (ranNum == 10){document.write('
'); } // 12
if (ranNum == 11){document.write('
'); } // 13
}