﻿function isctype(character){
 if (character>=48 && character<=57) //数字
  return 1;
 if (character>=65 && character<=90) //大写字母
  return 2;
 if (character>=97 && character<=122) //小写
  return 4;
 else
  return 8; //特殊字符
}

function bitTotal(num){
 modes=0;
 for (i=0;i<4;i++){
  if (num & 1) modes++;
  num>>>=1;
 }
 return modes;
}

function checkStrong(sPW){
 Modes=0;
 for (i=0;i<sPW.length;i++){
  Modes|=isctype(sPW.charCodeAt(i));
 }
 return bitTotal(Modes);
}



function EvalPwd(pwd){
 O_color="#F1F1F1";
 L_color="#FF0000";
 M_color="#FFFF99";
 H_color="#00CC66";
 if (pwd.length<6){
  Lcolor=Mcolor=Hcolor=O_color;
 }
 else{
  S_level=checkStrong(pwd);
  switch(S_level)  {
   case 0:
    Lcolor=Mcolor=Hcolor=O_color;
   case 1:
    Lcolor=L_color;
    Mcolor=Hcolor=O_color;
    break;
   case 2:
    Lcolor=Mcolor=M_color;
    Hcolor=O_color;
    break;
   default:
    Lcolor=Mcolor=Hcolor=H_color;
    }
  }
 document.getElementById("iWeak").style.background=Lcolor;
 document.getElementById("iMedium").style.background=Mcolor;
 document.getElementById("iStrong").style.background=Hcolor;
 return;
}



function Evalshenfen(shenfen)
{
}


var globalProvinceList = {
        "شىنجاڭ" : new Array("ئۈرۈمچى","كورلا","ئاتۇش","خوتەن","قەشقەر","تۈرپان","قۇمۇل","سانجى","ئالتاي","بورتالا","غۇلجا","ئاقسۇ","قاراماي","شىخەنزە ","باشقا شەھەرلەر "),
        "باشقا جايلار" : new Array("باشقا جايلار")
}
/*
 * description: 当省变化时，更新市列表
 * params:
 *    cityListName: 市列表的ID
 *    selectedProvince: 选中的省名称
 *    selectedCity: 选中的市名称，如果没有默认的选择项，为''
*/
function provinceChanged(cityListName, selectedProvince, selectedCity) {
        var cityList = document.getElementById(cityListName);
        if( cityList == null ) {
                return;
        }
        cityList.options.length = 1;// 保留“--全部--”选项，其他的删除

        if( selectedProvince != '' ) {// 如果选择项不是“--全部--”，则更新市信息，否则什么都不做
                var cities = globalProvinceList[selectedProvince];
                if( cities != null ) {
                        for(index = 0; index < cities.length; ++index) {
                                // 第0项是“--全部--”，从第一项开始
                                cityList.options[index+1] = new Option(cities[index], cities[index]);
                                if( cities[index] == selectedCity ) {// 如果和初始时的市相同，则设置selectedIndex
                                        cityList.selectedIndex = index+1;
                                }
                        }
                }
        }
}
/*
 *  description: 初始化省市列表框
 * params:
 *    provinceListName: 省列表框的ID
 *    cityListName: 市列表框的ID
 *    selectedProvince: 初始时选择的省，如果没有默认值，为''
 *    selectedCity: 初始时选择的市，如果没有默认值，为''
*/
function initProvinceList(provinceListName, cityListName, selectedProvince, selectedCity) {
        var provinceList = document.getElementById(provinceListName);

        // 初始化省列表
        if( provinceList != null ) {
                provinceList.options.length = 0;
                provinceList.options[0] = new Option('--ئۆلكە تاللاڭ--', '');
                for(provinceName in globalProvinceList) {
                        var provinceIndex = provinceList.options.length;
                        provinceList.options[provinceIndex] = new Option(provinceName, provinceName);
                        if( provinceName == selectedProvince ) {// 如果和初始时的省相同，则设置selectedIndex
                                provinceList.selectedIndex = provinceIndex;
                        }
                }
        }

        var cityList = document.getElementById(cityListName);

        // 初始化市列表
        if( cityList != null ) {
                cityList.options.length = 0;
                cityList.options[0] = new Option('--شەھەر تاللاڭ--', '');
        }

        // 根据省更新市的列表
        provinceChanged(cityListName, selectedProvince, selectedCity);
}


function changeSelect4() {
	var num4=document.reg_frm.marip.options[reg_frm.marip.selectedIndex].value;
	if (parseInt(num4)>3 && parseInt(num4)<4) {
		document.reg_frm.grade.options.length = 1;		
		document.reg_frm.grade.options[0].text = 'سىنىپ تاللاڭ';
		document.reg_frm.grade.options[0].value = -1;
		return;		
	}
	if (parseInt(num4)>3)
		num4 = "1";
		
	switch (num4) {
	case '-1':
		document.reg_frm.grade.options.length = 0;
		break;
        case '1':
		document.reg_frm.grade.options.length = 11;
		document.reg_frm.grade.options[0].text = 'سىنىپ تاللاڭ';
		document.reg_frm.grade.options[0].value = -1;
		document.reg_frm.grade.options[1].text = 'بالىلار دەرسلىكى';
		document.reg_frm.grade.options[1].value = 1;
		document.reg_frm.grade.options[2].text = 'باشلانغۇچ دەرسلىكى';
		document.reg_frm.grade.options[2].value = 2;
		document.reg_frm.grade.options[3].text = 'تولۇقسىز دەرسلىكى';
		document.reg_frm.grade.options[3].value = 3;
		document.reg_frm.grade.options[4].text = 'تولۇق ئوتتۇرا دەرسلىكى';
		document.reg_frm.grade.options[4].value = 4;
		document.reg_frm.grade.options[5].text = 'تولۇق- تولۇقسىز ئىمتىھانى';
		document.reg_frm.grade.options[5].value = 5;
		document.reg_frm.grade.options[6].text = 'گۈزەل- سەنئەت';
		document.reg_frm.grade.options[6].value = 6;
		document.reg_frm.grade.options[7].text = 'كەسپى مائارىپ';
		document.reg_frm.grade.options[7].value = 7;
		document.reg_frm.grade.options[8].text = 'چوڭلار مائارىپى';
		document.reg_frm.grade.options[8].value = 8;
		document.reg_frm.grade.options[9].text = 'سۇئال ئامبىرى';
		document.reg_frm.grade.options[9].value = 9;
		document.reg_frm.grade.options[10].text = 'تەجىرىبە دەرسى';
		document.reg_frm.grade.options[10].value = 10;
		break;
	case '2':
		document.reg_frm.grade.options.length = 4;
		document.reg_frm.grade.options[0].text = 'سىنىپ تاللاڭ';
		document.reg_frm.grade.options[0].value = -1;
		document.reg_frm.grade.options[1].text = 'چەتئەل تىلى';
		document.reg_frm.grade.options[1].value = 11;
		document.reg_frm.grade.options[2].text = 'كومپيۇتېر';
		document.reg_frm.grade.options[2].value = 12;
		document.reg_frm.grade.options[3].text = 'خەنزۇتىلى';
		document.reg_frm.grade.options[3].value = 13;
		break;
	case '3':
		document.reg_frm.grade.options.length = 2;
		document.reg_frm.grade.options[0].text = 'سىنىپ تاللاڭ';
		document.reg_frm.grade.options[0].value = -1;
		document.reg_frm.grade.options[1].text = 'ساقلىقنى ساقلاش بىلىملىرى';
		document.reg_frm.grade.options[1].value = 14;
		break;
}}


function changeSelect() {
                 document.reg_frm.nianji.value=document.reg_frm.marip.options[reg_frm.marip.selectedIndex].text +">>"+ document.reg_frm.grade.options[reg_frm.grade.selectedIndex].text;
	var num=document.reg_frm.grade.options[reg_frm.grade.selectedIndex].value;
	if (parseInt(num)>14 && parseInt(num)<15) {
		document.reg_frm.Course.options.length = 1;		
		document.reg_frm.Course.options[0].text = 'دەرس تۈرىنى تاللاڭ';
		document.reg_frm.Course.options[0].value = -1;
		return;		
	}
	if (parseInt(num)>14)
		num = "1";
		
	switch (num) {
	case '-1':
		document.reg_frm.Course.options.length = 0;
		break;
    case '1':
		document.reg_frm.Course.options.length = 10;
		document.reg_frm.Course.options[0].text = 'دەرس تۈرىنى تاللاڭ';
		document.reg_frm.Course.options[0].value = -1;
		document.reg_frm.Course.options[1].text = 'پىنيىن ئۇگىنىش';
		document.reg_frm.Course.options[1].value = 1;
		document.reg_frm.Course.options[2].text = 'يان بۆلەك ئۈگىنىش';
		document.reg_frm.Course.options[2].value = 2;
		document.reg_frm.Course.options[3].text = 'رەقەم ئۈگىنىش';
		document.reg_frm.Course.options[3].value = 3;
		document.reg_frm.Course.options[4].text = 'قوشۇش ئەمىلى ئۈگىنىش';
		document.reg_frm.Course.options[4].value = 4;
		document.reg_frm.Course.options[5].text = 'ئىلىش ئەمىلى ئۈگىنىش';
		document.reg_frm.Course.options[5].value = 5;
		document.reg_frm.Course.options[6].text = 'كۆپەيتىش ئەمىلى ئۈگىنىش';
		document.reg_frm.Course.options[6].value = 6;
		document.reg_frm.Course.options[7].text = 'بۆلۇش ئەمىلى ئۈگىنىش';
		document.reg_frm.Course.options[7].value = 7;
		document.reg_frm.Course.options[8].text = 'ئىلىپبە ئۇگىنىش';
		document.reg_frm.Course.options[8].value = 8;
		document.reg_frm.Course.options[9].text = 'باشقا دەرسلەر';
		document.reg_frm.Course.options[9].value = 9;
		break;
	case '2':
		document.reg_frm.Course.options.length = 13;
		document.reg_frm.Course.options[0].text = 'دەرس تۈرىنى تاللاڭ';
		document.reg_frm.Course.options[0].value = -1;
		document.reg_frm.Course.options[1].text = '3. يىللىق ماتىماتىكا';
		document.reg_frm.Course.options[1].value = 10;
		document.reg_frm.Course.options[2].text = '3. يىللىق خەنزۇتىلى';
		document.reg_frm.Course.options[2].value = 11;
		document.reg_frm.Course.options[3].text = '3. يىللىق ئەدەبىيات';
		document.reg_frm.Course.options[3].value = 12;
		document.reg_frm.Course.options[4].text = '4.يىللىق ماتىماتىكا';
		document.reg_frm.Course.options[4].value = 13;
		document.reg_frm.Course.options[5].text = '4.يىللىق خەنزۇتىلى';
		document.reg_frm.Course.options[5].value = 14;
		document.reg_frm.Course.options[6].text = '4.يىللىق ئەدەبىيات';
		document.reg_frm.Course.options[6].value = 15;
		document.reg_frm.Course.options[7].text = '5.يىللىق ماتىماتىكا';
		document.reg_frm.Course.options[7].value = 16;
		document.reg_frm.Course.options[8].text = '5.يىللىق خەنزۇتىلى';
		document.reg_frm.Course.options[8].value = 17;
		document.reg_frm.Course.options[9].text = '5.يىللىق ئەدەبىيات';
		document.reg_frm.Course.options[9].value = 18;
		document.reg_frm.Course.options[10].text = '6.يىللىق ماتىماتىكا';
		document.reg_frm.Course.options[10].value = 19;
		document.reg_frm.Course.options[11].text = '6.يىللىق خەنزۇتىلى';
		document.reg_frm.Course.options[11].value = 20;
		document.reg_frm.Course.options[12].text = '6.يىللىق ئەدەبىيات';
		document.reg_frm.Course.options[12].value = 21;
		break;
	case '3':
		document.reg_frm.Course.options.length = 18;
		document.reg_frm.Course.options[0].text = 'دەرس تۈرىنى تاللاڭ';
		document.reg_frm.Course.options[0].value = -1;
		document.reg_frm.Course.options[1].text = 'تولۇقسىز 1. يىللىق ماتىماتىكا';
		document.reg_frm.Course.options[1].value = 22;
		document.reg_frm.Course.options[2].text = 'تولۇقسىز 1. يىللىق خەنزۇتىلى';
		document.reg_frm.Course.options[2].value = 23;
		document.reg_frm.Course.options[3].text = 'تولۇقسىز 1. يىللىق ئەدەبىيات';
		document.reg_frm.Course.options[3].value = 24;
		document.reg_frm.Course.options[4].text = 'تولۇقسىز 2. يىللىق ماتىماتىكا';
		document.reg_frm.Course.options[4].value = 25;
		document.reg_frm.Course.options[5].text = 'تولۇقسىز 2. يىللىق خەنزۇتىلى';
		document.reg_frm.Course.options[5].value = 26;
		document.reg_frm.Course.options[6].text = 'تولۇقسىز 2. يىللىق ئەدەبىيات';
		document.reg_frm.Course.options[6].value = 27;
		document.reg_frm.Course.options[7].text = 'تولۇقسىز 2. يىللىق بىئولوگىيە';
		document.reg_frm.Course.options[7].value = 28;
		document.reg_frm.Course.options[8].text = 'تولۇقسىز 2. يىللىق فىزىكا';
		document.reg_frm.Course.options[8].value = 29;
		document.reg_frm.Course.options[9].text = 'تولۇقسىز 2. يىللىق سىياسەت';
		document.reg_frm.Course.options[9].value = 30;
		document.reg_frm.Course.options[10].text = 'تولۇقسىز 3. يىللىق ماتىماتىكا';
		document.reg_frm.Course.options[10].value = 31;
		document.reg_frm.Course.options[11].text = 'تولۇقسىز 3. يىللىق خەنزۇتىلى';
		document.reg_frm.Course.options[11].value = 32;
		document.reg_frm.Course.options[12].text = 'تولۇقسىز 3. يىللىق ئەدەبىيات';
		document.reg_frm.Course.options[12].value = 33;
		document.reg_frm.Course.options[13].text = 'تولۇقسىز 3. يىللىق بىئولوگىيە';
		document.reg_frm.Course.options[13].value = 34;
		document.reg_frm.Course.options[14].text = 'تولۇقسىز 3. يىللىق فىزىكا';
		document.reg_frm.Course.options[14].value = 35;
		document.reg_frm.Course.options[15].text = 'تولۇقسىز 3. يىللىق سىياسەت';
		document.reg_frm.Course.options[15].value = 36;
		document.reg_frm.Course.options[16].text = 'تولۇقسىز 3. يىللىق خىمىيە';
		document.reg_frm.Course.options[16].value = 37;
		document.reg_frm.Course.options[17].text = 'تولۇقسىز 3. يىللىق ئېنگلىزتىلى ';
		document.reg_frm.Course.options[17].value = 38;
		break;
	case '4':
		document.reg_frm.Course.options.length = 25;
		document.reg_frm.Course.options[0].text = 'دەرس تۈرىنى تاللاڭ';
		document.reg_frm.Course.options[0].value = -1;
		document.reg_frm.Course.options[1].text = 'تولۇق 1.يىللىق ماتىماتىكا';
		document.reg_frm.Course.options[1].value = 39;
		document.reg_frm.Course.options[2].text = 'تولۇق 1.يىللىق خەنزۇتىلى';
		document.reg_frm.Course.options[2].value = 40;
		document.reg_frm.Course.options[3].text = 'تولۇق 1.يىللىق ئەدەبىيات';
		document.reg_frm.Course.options[3].value = 41;
		document.reg_frm.Course.options[4].text = 'تولۇق 1.يىللىق بىئولوگىيە';
		document.reg_frm.Course.options[4].value = 42;
		document.reg_frm.Course.options[5].text = 'تولۇق 1.يىللىق فىزىكا';
		document.reg_frm.Course.options[5].value = 43;
		document.reg_frm.Course.options[6].text = 'تولۇق 1.يىللىق سىياسەت';
		document.reg_frm.Course.options[6].value = 44;
		document.reg_frm.Course.options[7].text = 'تولۇق 1.يىللىق خىمىيە';
		document.reg_frm.Course.options[7].value = 45;
		document.reg_frm.Course.options[8].text = 'تولۇق 1.يىللىق ئېنگلىزتىلى ';
		document.reg_frm.Course.options[8].value = 46;
		document.reg_frm.Course.options[9].text = 'تولۇق 2.يىللىق ماتىماتىكا';
		document.reg_frm.Course.options[9].value = 47;
		document.reg_frm.Course.options[10].text = 'تولۇق 2.يىللىق خەنزۇتىلى';
		document.reg_frm.Course.options[10].value = 48;
		document.reg_frm.Course.options[11].text = 'تولۇق 2.يىللىق ئەدەبىيات';
		document.reg_frm.Course.options[11].value = 49;
		document.reg_frm.Course.options[12].text = 'تولۇق 2.يىللىق بىئولوگىيە';
		document.reg_frm.Course.options[12].value = 50;
		document.reg_frm.Course.options[13].text = 'تولۇق 2.يىللىق فىزىكا';
		document.reg_frm.Course.options[13].value = 51;
		document.reg_frm.Course.options[14].text = 'تولۇق 2.يىللىق سىياسەت';
		document.reg_frm.Course.options[14].value = 52;
		document.reg_frm.Course.options[15].text = 'تولۇق 2.يىللىق خىمىيە';
		document.reg_frm.Course.options[15].value = 53;
		document.reg_frm.Course.options[16].text = 'تولۇق 2.يىللىق ئېنگلىزتىلى ';
		document.reg_frm.Course.options[16].value = 54;
		document.reg_frm.Course.options[17].text = 'تولۇق 3.يىللىق ماتىماتىكا';
		document.reg_frm.Course.options[17].value = 55;
		document.reg_frm.Course.options[18].text = 'تولۇق 3.يىللىق خەنزۇتىلى';
		document.reg_frm.Course.options[18].value = 56;
		document.reg_frm.Course.options[19].text = 'تولۇق 3.يىللىق ئەدەبىيات';
		document.reg_frm.Course.options[19].value = 57;
		document.reg_frm.Course.options[20].text = 'تولۇق 3.يىللىق بىئولوگىيە';
		document.reg_frm.Course.options[20].value = 58;
		document.reg_frm.Course.options[21].text = 'تولۇق 3.يىللىق فىزىكا';
		document.reg_frm.Course.options[21].value = 59;
		document.reg_frm.Course.options[22].text = 'تولۇق 3.يىللىق سىياسەت';
		document.reg_frm.Course.options[22].value = 60;
		document.reg_frm.Course.options[23].text = 'تولۇق 3.يىللىق خىمىيە';
		document.reg_frm.Course.options[23].value = 61;
		document.reg_frm.Course.options[24].text = 'تولۇق 3.يىللىق ئېنگلىزتىلى ';
		document.reg_frm.Course.options[24].value = 62;
		break;
	case '5':
		document.reg_frm.Course.options.length = 13;
		document.reg_frm.Course.options[0].text = 'دەرس تۈرىنى تاللاڭ';
		document.reg_frm.Course.options[0].value = -1;
		document.reg_frm.Course.options[1].text = 'تولۇقسىز ماتىماتىكا ئىمتىھانى';
		document.reg_frm.Course.options[1].value = 63;
		document.reg_frm.Course.options[2].text = 'تولۇقسىز خەنزۇتىلى ئىمتىھانى';
		document.reg_frm.Course.options[2].value = 64;
		document.reg_frm.Course.options[3].text = 'تولۇقسىز بىئولوگىيە ئىمتىھانى';
		document.reg_frm.Course.options[3].value = 65;
		document.reg_frm.Course.options[4].text = 'تولۇقسىز سىياسەت ئىمتىھانى';
		document.reg_frm.Course.options[4].value = 66;
		document.reg_frm.Course.options[5].text = 'تولۇقسىز فىزىكا ئىمتىھانى';
		document.reg_frm.Course.options[5].value = 67;
		document.reg_frm.Course.options[6].text = 'تولۇقسىز خىمىيە ئىمتىھانى';
		document.reg_frm.Course.options[6].value = 68;
		document.reg_frm.Course.options[7].text = 'تولۇق ماتىماتىكا ئىمتىھانى';
		document.reg_frm.Course.options[7].value = 69;
		document.reg_frm.Course.options[8].text = 'تولۇق خەنزۇتىلى ئىمتىھانى';
		document.reg_frm.Course.options[8].value = 70;
		document.reg_frm.Course.options[9].text = 'تولۇق بىئولوگىيە ئىمتىھانى';
		document.reg_frm.Course.options[9].value = 71;
		document.reg_frm.Course.options[10].text = 'تولۇق سىياسەت ئىمتىھانى';
		document.reg_frm.Course.options[10].value = 72;
		document.reg_frm.Course.options[11].text = 'تولۇق فىزىكا ئىمتىھانى';
		document.reg_frm.Course.options[11].value = 73;
		document.reg_frm.Course.options[12].text = 'تولۇق خىمىيە ئىمتىھانى';
		document.reg_frm.Course.options[12].value = 74;
		break;
	case '6':
		document.reg_frm.Course.options.length = 4;
		document.reg_frm.Course.options[0].text = 'دەرس تۈرىنى تاللاڭ';
		document.reg_frm.Course.options[0].value = -1;
		document.reg_frm.Course.options[1].text = 'جۇڭگۇچە رەسىم';
		document.reg_frm.Course.options[1].value = 75;
		document.reg_frm.Course.options[2].text = 'ھوسىنخەت';
		document.reg_frm.Course.options[2].value = 76;
		document.reg_frm.Course.options[3].text = 'ماي بوياق رەسىم';
		document.reg_frm.Course.options[3].value = 77;
		break;
	case '7':
		document.reg_frm.Course.options.length = 5;
		document.reg_frm.Course.options[0].text = 'دەرس تۈرىنى تاللاڭ';
		document.reg_frm.Course.options[0].value = -1;
		document.reg_frm.Course.options[1].text = 'رىمۇنىتچىلىق دەسلەپكى سىنىپى';
		document.reg_frm.Course.options[1].value = 78;
		document.reg_frm.Course.options[2].text = 'رىمۇنىتچىلىق يۇقىرى دەرىجە';
		document.reg_frm.Course.options[2].value = 79;
		document.reg_frm.Course.options[3].text = 'ئاشپەزلىك كەسپى';
		document.reg_frm.Course.options[3].value = 80;
		document.reg_frm.Course.options[4].text = 'تىككۈچىلىك كەسپى';
		document.reg_frm.Course.options[4].value = 81;
		break;
	case '8':
		document.reg_frm.Course.options.length = 4;
		document.reg_frm.Course.options[0].text = 'دەرس تۈرىنى تاللاڭ';
		document.reg_frm.Course.options[0].value = -1;
		document.reg_frm.Course.options[1].text = 'ئۆزلىگىدىن ئۇگىنىش ئىمتىھانى';
		document.reg_frm.Course.options[1].value = 82;
		document.reg_frm.Course.options[2].text = 'ئوقۇتقۇچى تولۇقلاش ئىمتىھانى';
		document.reg_frm.Course.options[2].value = 83;
		document.reg_frm.Course.options[3].text = 'مەمۇرى خادىم ئىمتىھانى';
		document.reg_frm.Course.options[3].value = 84;
		break;
	case '9':
		document.reg_frm.Course.options.length = 5;
		document.reg_frm.Course.options[0].text = 'دەرس تۈرىنى تاللاڭ';
		document.reg_frm.Course.options[0].value = -1;
		document.reg_frm.Course.options[1].text = 'كومپيۇتېر دەرىجە ئىمتىھانى';
		document.reg_frm.Course.options[1].value = 85;
		document.reg_frm.Course.options[2].text = 'خەنزۇتىلى سەۋىيە سىناش ئىمتىھانى';
		document.reg_frm.Course.options[2].value = 86;
		document.reg_frm.Course.options[3].text = 'ئالىي مەكتەپ ئىمتىھانى تەقلىدىي سۇئالى';
		document.reg_frm.Course.options[3].value = 87;
		document.reg_frm.Course.options[4].text = 'ئىنگىلىزتىلى 6. دەرىجە ئىمتىھانى سۇئالى';
		document.reg_frm.Course.options[4].value = 88;
		break;
	case '10':
		document.reg_frm.Course.options.length = 3;
		document.reg_frm.Course.options[0].text = 'دەرس تۈرىنى تاللاڭ';
		document.reg_frm.Course.options[0].value = -1;
		document.reg_frm.Course.options[1].text = 'تولۇقسىز تەجىرىبە دەرسى';
		document.reg_frm.Course.options[1].value = 89;
		document.reg_frm.Course.options[2].text = 'تولۇق تەجىرىبە دەرسى';
		document.reg_frm.Course.options[2].value = 90;
		break;
	case '11':
		document.reg_frm.Course.options.length = 17;
		document.reg_frm.Course.options[0].text = 'دەرس تۈرىنى تاللاڭ';
		document.reg_frm.Course.options[0].value = -1;
		document.reg_frm.Course.options[1].text = 'ئىنگىلىز تىلى دەسلەپكى سەۋىيە';
		document.reg_frm.Course.options[1].value = 91;
		document.reg_frm.Course.options[2].text = 'ئېنگلىزتىلى ئوتتۇرا سەۋىيە';
		document.reg_frm.Course.options[2].value = 92;
		document.reg_frm.Course.options[3].text = 'ئېنگلىزتىلى يۇقىرى سەۋىيە';
		document.reg_frm.Course.options[3].value = 93;
		document.reg_frm.Course.options[4].text = 'ئىنگىلىز تىلى  گېرامماتىكىسى';
		document.reg_frm.Course.options[4].value = 94;
		document.reg_frm.Course.options[5].text = 'ئېنگلىزتىلى 4- دەرىجە ئىمتىھانى';
		document.reg_frm.Course.options[5].value = 95;
		document.reg_frm.Course.options[6].text = 'ئېنگلىزتىلى 6- دەرىجە ئىمتىھانى';
		document.reg_frm.Course.options[6].value = 96;
		document.reg_frm.Course.options[7].text = 'روس تىلى دەسلەپكى سەۋىيە';
		document.reg_frm.Course.options[7].value = 97;
		document.reg_frm.Course.options[8].text = 'روس تىلى ئوتتۇرا سەۋىيە';
		document.reg_frm.Course.options[8].value = 98;
		document.reg_frm.Course.options[9].text = 'روس تىلى يۇقىرى سەۋىيە';
		document.reg_frm.Course.options[9].value = 99;
		document.reg_frm.Course.options[10].text = 'روس تىلى گىرامماتىكا كۈچەيتىش';
		document.reg_frm.Course.options[10].value = 100;
		document.reg_frm.Course.options[11].text = 'روس تىلى دەرىجە ئىمتىھانى كۈچەيتىش';
		document.reg_frm.Course.options[11].value = 101;
		document.reg_frm.Course.options[12].text = ' ياپۇن تىلى دەسلەپكى سەۋىيە';
		document.reg_frm.Course.options[12].value = 102;
		document.reg_frm.Course.options[13].text = ' ياپۇن تىلى ئوتتۇرا سەۋىيە';
		document.reg_frm.Course.options[13].value = 103;
		document.reg_frm.Course.options[14].text = 'ياپۇن تىلى يۇقىرى سەۋىيە';
		document.reg_frm.Course.options[14].value = 104;
		document.reg_frm.Course.options[15].text = 'ياپۇن تىلى گىرامماتىكا كۈچەيتىش سىنىپى';
		document.reg_frm.Course.options[15].value = 105;
		document.reg_frm.Course.options[16].text = 'ياپۇن تىلى دەرىجە ئىمتىھانى كۈچەيتىش';
		document.reg_frm.Course.options[16].value = 106;
		break;
	case '12':
		document.reg_frm.Course.options.length = 9;
		document.reg_frm.Course.options[0].text = 'دەرس تۈرىنى تاللاڭ';
		document.reg_frm.Course.options[0].value = -1;
		document.reg_frm.Course.options[1].text = 'كومپيۇتېر 1. دەرىجە ئىمتىھانى';
		document.reg_frm.Course.options[1].value = 107;
		document.reg_frm.Course.options[2].text = 'كومپيۇتېر 2. دەرىجەئىمتىھانى';
		document.reg_frm.Course.options[2].value = 108;
		document.reg_frm.Course.options[3].text = 'تەكشىلىكتە ئېلان لايىھىلەش';
		document.reg_frm.Course.options[3].value = 109;
		document.reg_frm.Course.options[4].text = 'بىناكارلىق خەرىتىسىنى سىزىش';
		document.reg_frm.Course.options[4].value = 110;
		document.reg_frm.Course.options[5].text = 'تور بەت تۈزۈش سىنىپى';
		document.reg_frm.Course.options[5].value = 111;
		document.reg_frm.Course.options[6].text = 'دەرسلىك لايىھىلەش سىنىپى';
		document.reg_frm.Course.options[6].value = 112;
		document.reg_frm.Course.options[7].text = '3D ئىلانى ئىشلەش سىنىپى';
		document.reg_frm.Course.options[7].value = 113;
		document.reg_frm.Course.options[8].text = 'باشقا دەرسلىكلەر';
		document.reg_frm.Course.options[8].value = 114;
		break;
	case '13':
		document.reg_frm.Course.options.length = 10;
		document.reg_frm.Course.options[0].text = 'دەرس تۈرىنى تاللاڭ';
		document.reg_frm.Course.options[0].value = -1;
		document.reg_frm.Course.options[1].text = 'خەنزۇتىلى سەۋىيە سىناش ئىمتىھانى دەسلەپكى دەرىجە';
		document.reg_frm.Course.options[1].value = 115;
		document.reg_frm.Course.options[2].text = 'خەنزۇتىلى سەۋىيە سىناش ئىمتىھانى ئوتتۇرا دەرىجە';
		document.reg_frm.Course.options[2].value = 116;
		document.reg_frm.Course.options[3].text = 'خەنزۇتىلى سەۋىيە سىناش ئىمتىھانى يۇقىرى دەرىجە';
		document.reg_frm.Course.options[3].value = 117;
		document.reg_frm.Course.options[4].text = 'خەنزۇچە ئىغىزتىلى كۈچەيتىش دەسلەپكى سەۋىيە';
		document.reg_frm.Course.options[4].value = 118;
		document.reg_frm.Course.options[5].text = 'خەنزۇچە ئىغىزتىلى كۈچەيتىش ئوتتۇرا سەۋىيە';
		document.reg_frm.Course.options[5].value = 119;
		document.reg_frm.Course.options[6].text = 'خەنزۇچە ئىغىزتىلى كۈچەيتىش يۇقۇرى سەۋىيە';
		document.reg_frm.Course.options[6].value = 120;
		document.reg_frm.Course.options[7].text = 'ئۇنۋېرسال خەنزۇتىلى دەسلەپكى سەۋىيە';
		document.reg_frm.Course.options[7].value = 121;
		document.reg_frm.Course.options[8].text = 'ئۇنۋېرسال خەنزۇتىلى ئوتتۇراسەۋىيە';
		document.reg_frm.Course.options[8].value = 122;
		document.reg_frm.Course.options[9].text = 'ئۇنۋېرسال خەنزۇتىلى يۇقىرى سەۋىيە';
		document.reg_frm.Course.options[9].value = 123;
		break;
	case '14':
		document.reg_frm.Course.options.length = 10;
		document.reg_frm.Course.options[0].text = 'دەرس تۈرىنى تاللاڭ';
		document.reg_frm.Course.options[0].value = -1;
		document.reg_frm.Course.options[1].text = 'بەدەن ئاسراش دەرسلىكى';
		document.reg_frm.Course.options[1].value = 124;
		document.reg_frm.Course.options[2].text = 'ساغلاملىق دەرسخانىسى';
		document.reg_frm.Course.options[2].value = 125;
		document.reg_frm.Course.options[3].text = 'كىسەللىكنىڭ ئالدىنى ئىلىش';
		document.reg_frm.Course.options[3].value = 126;
		document.reg_frm.Course.options[4].text = 'تىببىي ساۋات';
		document.reg_frm.Course.options[4].value = 127;
		document.reg_frm.Course.options[5].text = 'ھۆسۇن تۈزەش';
		document.reg_frm.Course.options[5].value = 128;
		document.reg_frm.Course.options[6].text = 'تەنتەربىيە ۋە ساغلاملىق';
		document.reg_frm.Course.options[6].value = 129;
		document.reg_frm.Course.options[7].text = 'ئوزۇقلۇق ۋە ساغلاملىق';
		document.reg_frm.Course.options[7].value = 130;
		document.reg_frm.Course.options[8].text = 'بەدەن ئاسراش ساۋاتلىرى';
		document.reg_frm.Course.options[8].value = 131;
		document.reg_frm.Course.options[9].text = 'تولۇقسىز خىمىيە تەجىربە دەرسى';
		document.reg_frm.Course.options[9].value = 132;
		break;
	}
}

function changeSelect2() {
                document.reg_frm.kecheng.value=document.reg_frm.Course.options[reg_frm.Course.selectedIndex].text;
	var num1=document.reg_frm.Course.options[reg_frm.Course.selectedIndex].value;
	if (parseInt(num1)>132) {
		document.reg_frm.hourl.options.length = 1;		
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = -1;
		return;		
	}
	if (parseInt(num1)>132)
		num1 = "1";
	switch (num1) {
	case '-1':
		document.reg_frm.hourl.options.length = 0;
		break;

    case '1':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =60;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 100;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 135;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
 case '2':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =60;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 100;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 135;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
 case '3':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =60;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 100;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 135;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
 case '4':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =60;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 100;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 135;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
 case '5':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =60;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 100;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 135;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
 case '6':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =60;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 100;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 135;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
 case '7':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =60;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 100;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 135;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
 case '8':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =60;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 100;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 135;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
 case '9':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =60;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 100;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 135;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;

case '10':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =70;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 115;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 145;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 185;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '11':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =70;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 115;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 145;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 185;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '12':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =70;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 115;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 145;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 185;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '13':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =70;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 115;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 145;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 185;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '14':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =70;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 115;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 145;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 185;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '15':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =70;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 115;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 145;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 185;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '16':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =70;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 115;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 145;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 185;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '17':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =70;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 115;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 145;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 185;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '18':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =70;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 115;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 145;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 185;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '19':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =70;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 115;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 145;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 185;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '20':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =70;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 115;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 145;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 185;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '21':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =70;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 115;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 145;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 185;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '22':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =75;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 125;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 165;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 205;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '23':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =75;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 125;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 165;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 205;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '24':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =75;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 125;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 165;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 205;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '25':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =75;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 125;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 165;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 205;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '26':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =75;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 125;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 165;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 205;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '27':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =75;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 125;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 165;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 205;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '28':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =75;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 125;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 165;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 205;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '29':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =75;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 125;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 165;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 205;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '30':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =75;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 125;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 165;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 205;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '31':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =75;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 125;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 165;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 205;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '32':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =75;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 125;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 165;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 205;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '33':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =75;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 125;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 165;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 205;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '34':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =75;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 125;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 165;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 205;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '35':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =75;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 125;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 165;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 205;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '36':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =75;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 125;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 165;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 205;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '37':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =75;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 125;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 165;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 205;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '38':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقۇش ۋاقتىنى تاللاڭ';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =75;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 125;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 165;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 205;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '39':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '40':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
		
case '41':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '42':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '43':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '44':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '45':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '46':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '47':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '48':document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '49':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '50':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '51':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '52':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '53':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '54':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '55':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '56':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;

case '57':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '58':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '59':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '60':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '61':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '62':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '63':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '64':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '65':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '66':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '67':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '68':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '69':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '70':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '71':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '72':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '73':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '74':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '75':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 135;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 225;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;

case '76':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =0;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 0;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 0;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '77':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =0;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 0;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 0;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '78':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =350;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 650;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 920;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 1185;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '79':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =220;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 395;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 495;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '80':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =220;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 395;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 495;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '81':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =220;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 395;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 495;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '82':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =220;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 395;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 495;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '83':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =220;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 395;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 495;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '84':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =220;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 395;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 455;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '85':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =0;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 0;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 0;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '86':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =0;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 0;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 0;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
		
case '87':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =0;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 0;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 0;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;

case '88':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =0;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 0;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 0;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '89':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =0;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 0;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 0;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '90':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =0;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 0;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 0;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '91':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =70;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 125;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '92':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =75;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 130;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 180;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 230;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '93':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 140;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 190;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 240;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 290;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 325;
		break;
case '94':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =90;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 150;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 205;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '95':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =105;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 165;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 220;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 265;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 315;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '96':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =115;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 180;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 235;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 280;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 330;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 360;
		break;
//rustili
case '97':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 140;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 190;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 240;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '98':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =90;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 150;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 205;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 250;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 300;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '99':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =90;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 150;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 205;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 250;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 300;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '100':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =105;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 165;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 220;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 265;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 315;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '101':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =115;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 180;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 235;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 280;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 330;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 380;
		break;
case '102':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 140;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 190;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 240;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '103':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =90;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 150;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 205;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 250;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 300;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '104':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =90;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 150;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 205;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 250;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 300;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '105':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =105;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 165;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 220;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 265;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 315;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '106':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =115;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 180;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 235;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 280;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 330;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 380;
		break;
//kompiyoter
case '107':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 140;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 190;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 250;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '108':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =150;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 230;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 310;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '109':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =165
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 255;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 0;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '110':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =220;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 350;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 490;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '111':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =275;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 495;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 695;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '112':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =165;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 255;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 0;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '113':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =295;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 510;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 710;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '114':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =295;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 510;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 710;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
//hanzutili
case '115':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =70;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 125;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '116':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =75;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 130;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 180;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 230;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '117':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 140;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 190;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 240;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '118':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =70;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 125;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 175;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '119':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =75;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 130;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 180;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 230;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '120':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =85;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 140;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 190;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 240;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '121':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =90;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 150;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 200;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 240;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '122':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =95;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 155;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 205;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;
case '123':
		document.reg_frm.hourl.options.length = 13;
		document.reg_frm.hourl.options[0].text = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[0].value = 'ئوقوش ھەققى';
		document.reg_frm.hourl.options[1].text = 'بىر ئاي';
		document.reg_frm.hourl.options[1].value =110;
		document.reg_frm.hourl.options[2].text = 'ئىككى ئاي';
		document.reg_frm.hourl.options[2].value = 165;
		document.reg_frm.hourl.options[3].text = 'ئۈچ ئاي';
		document.reg_frm.hourl.options[3].value = 210;
		document.reg_frm.hourl.options[4].text = 'تۆت ئاي';
		document.reg_frm.hourl.options[4].value = 0;
		document.reg_frm.hourl.options[5].text = 'بەش ئاي';
		document.reg_frm.hourl.options[5].value = 0;
		document.reg_frm.hourl.options[6].text = 'ئالتە ئاي';
		document.reg_frm.hourl.options[6].value = 0;
		break;

	}
}

function changeSelect3()
	{
	DynamicText.innerHTML=document.reg_frm.hourl.options[reg_frm.hourl.selectedIndex].value;
	}



var DTControl_PopType = "tip";//"{pop,alert,tip}定义提示信息的方式"
var DTControl_PopDefaultTitle = "提示";//使用pop弹出提示时的默认Title标题
var DTControl_oPopup = window.createPopup();
var DTControl_popTop=0;
var DTControl_popWidth = 250;
var DTControl_popheight = 120;
var DTControl_popTitleBgcolor = "#EEEEEE";//使用pop弹出提示时Title的背景色
var DTControl_popTitleHeight = "30";//使用pop弹出提示时title的高度
var DTControl_TableStyle = 'border=5 bgcolor=#FFFFFF';//使用pop弹出提示时的表格属性
var TimerNum = "30";//使用pop弹出提示时的移动速度
var InputOnFocusColor = "#FFFFCC";
var AppPath = "";

if(DTControl_PopType=="tip")
{
document.write("<div id='DTControl_TIPDIV' style='position:absolute; z-index:999; left: 237px; width:280px;top: 134px;display:none' onclick=\"this.style.display='none'\"><table id=\"__01\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td align=\"left\" valign=\"top\"><img src=\"" + AppPath + "/img/TIPIMG_04.gif\" width=\"5\" height=\"9\" alt=\"\"></td><td colspan=\"2\" background=\"" + AppPath + "/img/TIPIMG_02.gif\" bgcolor=#ffffff></td><td align=\"right\" valign=\"top\" background=\"" + AppPath + "/img/TIPIMG_01.gif\"></td></tr><tr><td align=\"right\" valign=\"top\" background=\"" + AppPath + "/img/TIPIMG_11.gif\"></td><td colspan=\"2\" rowspan=\"2\"><table width=\"100%\" border=\"0\" bgcolor=\"#FFFFFF\"><tr><td bgcolor=\"#FFFFFF\"><span id='DTControl_TipSpan' style='font-size:12px;color: #990000;font-weight: bold;'></span></td></tr></table></td> <td rowspan=\"2\" background=\"" + AppPath + "/img/TIPIMG_08.gif\"></td> </tr> <tr> <td background=\"" + AppPath + "/img/TIPIMG_11.gif\"></td></tr><tr><td> <img src=\"" + AppPath + "/img/TIPIMG_15.gif\" width=\"5\" height=\"7\" alt=\"\"></td><td colspan=\"2\" background=\"" + AppPath + "/img/TIPIMG_13.gif\"></td><td><img src=\"" + AppPath + "/img/TIPIMG_12.gif\" width=\"13\" height=\"7\" alt=\"\"></td></tr></table></div>");
}



function DTControl_Hide_TIPDIV()
{
  document.all.DTControl_TIPDIV.style.display='none';
}
function DTControl_SetInputBG(Obj)
{
   Obj.style.background = InputOnFocusColor;
  
}

function DTControl_CleInputBG(Obj)
{
  Obj.style.background = '#FFFFFF';
}

function DTControlgetoffset(e) 
{ 
try
{ 
 var t=e.offsetTop+10;  
 var l=e.offsetLeft + 80;  
 while(e=e.offsetParent) 
 {  
  t+=e.offsetTop;  
  l+=e.offsetLeft;  
 }  
 var rec = new Array(1); 
 rec[0]  = t; 
 rec[1] = l; 
 return rec;
}
catch(e)
{}
}  


function DTControl_HideTIPDIV()
{
 document.all.DTControl_TIPDIV.style.display = 'none';

}
function showTIPForTIPSPAN(Message,obj)
{

var tl = DTControlgetoffset(obj);

  document.all.DTControl_TipSpan.innerHTML = Message;

  var Left = tl[1];
  var Top  = tl[0];
  document.all.DTControl_TIPDIV.style.left = Left;
  document.all.DTControl_TIPDIV.style.top  = Top;
  obj.onkeydown =DTControl_HideTIPDIV;
 document.all.DTControl_TIPDIV.style.display = 'block';
 
}
///Pop模式的标题，信息内容，是Pop模式
function ShowMessage(Message,obj)
{

  if(DTControl_PopType=="pop")
  {
   
   DTControl_popmsg(DTControl_PopDefaultTitle,Message)
  }
  else if(DTControl_PopType=="alert")
  {
   alert(Message);
  }
  else if(DTControl_PopType=="tip")
  {
  showTIPForTIPSPAN(Message,obj);
  
  }
  return false;
}


//用户自定义正则表达式验证
function isCustomRegular(s,REstring,errMessage) 
{ 
var patrn=eval('/' + REstring + '/'); 
if (!patrn.exec(s.value))
	{
	ShowMessage(errMessage,s);
	s.focus();
	return false;
	}
	return true;
} 



//校验用户姓名：只能输入字母、数字、下划线 通过测试////////////////
function isTrueName(s,min,max,errMessage) 
{ 
var patrn=eval('/^[a-zA-Z][a-zA-Z0-9_]{' + (min-1) + ',' + (max-1) + '}$/'); 

if (!patrn.exec(s.value))
	{
	ShowMessage(errMessage,s);
	s.focus();
	return false;
	}
	return true;
} 

//字符串检查 通过测试////////////////
function isText(s,min,max,errMessage) 
{ 

var thisvalue = s.value;
var thisLength = thisvalue.length;
if(thisLength<min)
	{
	ShowMessage(errMessage,s);
	s.focus();
	return false;

	}

	if(thisLength>max)
	{
	ShowMessage(errMessage,s);
	
	s.focus();
	return false;

	}

	return true;
} 

//校验密码：只能输入6-20个字母、数字、下划线 通过测试////////////////
function isPasswd(s,min,max,errMessage) 
{ 
//var patrn=eval('/^[a-zA-Z][a-zA-Z0-9_]{' + (min-1) + ',' + (max-1) + '}$/'); 

var IntLength = s.value.lenth;
if(IntLength<min || IntLength>max)
{
ShowMessage(errMessage,s);
	s.focus();
	return false;
}


//if (!patrn.exec(s)) 
//	{
//	ShowMessage(errMessage,s);
//	s.focus();
//	return false;
//	}
	return true;
} 




//校验普通电话、传真号码：可以“+”开头，除数字外，可含有“-” //通过测试
function isTel(s,errMessage) 
{ 
//var patrn=/^[+]{0,1}(\d){1,3}[ ]?([-]?(\d){1,12})+$/; 
var patrn=/^[+]{0,1}(\d){1,3}[ ]?([-]?((\d)|[ ]){6,8})+$/; 
if (!patrn.exec(s.value))
	{
	ShowMessage(errMessage,s);
	s.focus();
	return false ;
	}
return true 
} 



//校验手机号码：必须以数字开头，除数字外，可含有“-” //通过测试
function isMobil(s,errMessage) 
{ 
var patrn=/^[ ]?([-]?((\d)|[ ]){11})+$/;
if (!patrn.exec(s.value)) 
	{
	ShowMessage(errMessage,s);

	s.focus();
	return false ;
	}
return true 
} 




//校验邮政编码 通过测试
function isPostalCode(s,errMessage) 
{ 
var patrn=/^[a-zA-Z0-9 ]{6,6}$/; 
if (!patrn.exec(s.value)) 
	{
	ShowMessage(errMessage,s);
	s.focus();
	return false ;
	}
return true 
} 


//校验URL通过测试
function isURL(s,errMessage) 
{ 
var patrn=/[a-zA-z]+:\/\/[^\s]*/;
if (!patrn.exec(s.value)) 
	{
	ShowMessage(errMessage,s);
	s.focus();
	return false ;
	}
return true 
} 




//校验日期//通过测试
function isDateValue(s,errMessage) 
{ 
var patrn=/^[\\d]{4}-[\\d]{2}-[\\d]{2}$/;
if (!patrn.exec(s.value)) 
	{
	ShowMessage(errMessage,s);
	s.focus();
	return false ;
	}
return true 
} 



//校验email//通过测试
function isEmail(s,errMessage) 
{ 
var patrn=/^[\w.-]+@([0-9a-z][\w-]+\.)+[a-z]{2,3}$/;
if (!patrn.exec(s.value)) 
	{
	ShowMessage(errMessage,s);
	s.focus();
	return false ;
	}
return true 
} 


//校验身份证//通过测试
function isIDCard(s,errMessage) 
{ 
var patrn=/^[0-9_]{15}$|^[0-9_]{18}$/;

if (!patrn.exec(s.value)) 
	{
	ShowMessage(errMessage,s);
	s.focus();
	return false ;
	}
return true 
} 



//校验数字。对象，最小值，最大值，最多小数点位数，错误信息头
function isNumber(s,min,max,AfterDecimalNumber,errMessage) 
{ 

	var patrn=eval('/^[-0-9]+(.[0-9]{0,' + AfterDecimalNumber + '})?$/');
	var thisvalue = s.value;
	if(thisvalue<min)
	{
	ShowMessage(errMessage,s);
		s.focus();
		return false
	}

	if(thisvalue>max)
	{
	ShowMessage(errMessage,s);
		s.focus();
		return false
	}



if (!patrn.exec(s.value)) 
	{
	ShowMessage(errMessage,s);
	s.focus();
	return false ;
	}
return true 
} 



var DTControl_tmpmindt=new Date(('1900-1-1').replace(/-/g,'/'));
var DTControl_tmpmaxdt=new Date(('2050-1-1').replace(/-/g,'/'));
var DTControl_DT_gdCtrl = new Object();
var DTControl_goSelectTag = new Array();
var DTControl_gcGray = "#808080";
var DTControl_gcToggle = "#ffff00";
var DTControl_gcBG = "#eeeeee";
var DTControl_gdCurDate = new Date();
var DTControl_giYear = DTControl_gdCurDate.getFullYear();
var DTControl_giMonth = DTControl_gdCurDate.getMonth()+1;
var DTControl_giDay = DTControl_gdCurDate.getDate();
var DTControl_DtableinputYY;
var DTControl_DtableinputMM;
var DTControl_DtableinputDD;
var DTControl_Dtableinputhh;
var DTControl_Dtableinputmm;
var DTControl_Dtableinputss;

////////////////////日历所用代码
function DTControl_DT_fSetDate(iYear,iMonth,iDay,ihour,iminute,isecond)	
	{
		var themonth=new String(iMonth);
		var theday=new String(iDay);
		if (themonth.length ==1 )
			{
			iMonth="0" + themonth;	 
			}
		if (theday.length ==1) 
			{
			iDay="0" + theday;
			}
		var dihour=new String(ihour); 
		var diminute=new String(iminute); 
		var disecond=new String(isecond); 
		var tmpdatetime=new String(); 
		if(dihour=="0" && diminute=="0" && disecond=="0")
			{
			tmpdatetime = iYear+"-"+iMonth+"-"+iDay;
			}
		else 
			{
			if(dihour.length==1) 
				{
				dihour="0" + dihour;
				}
			if(diminute.length==1) 
				{ diminute="0" + diminute; }
			if(disecond.length==1) 
				{ disecond="0" + disecond; } 
			tmpdatetime = iYear+"-"+iMonth+"-"+iDay + " " + dihour + ":" + diminute + ":" + disecond; 
				} 
		var tmpselectdt=Date.parse(tmpdatetime.replace(/-/g,"/")); 

if (tmpselectdt<DTControl_tmpmindt)
{ 
alert('您选择的日期/时间不能小于' + DTControl_tmpmindt.toLocaleString());
return;
} 
if(tmpselectdt>DTControl_tmpmaxdt) 
{ 
	alert('您选择的日期/时间不能大于' + DTControl_tmpmaxdt.toLocaleString());
return; 
} 
	DTControl_DT_gdCtrl.value =tmpdatetime; 
	DTControl_DT_fHideCalendar(); 
}

function DTControl_DT_fHideCalendar(){



try
{
 DTControl_VicPopCal.style.visibility = "hidden";
 }
 catch(e)
 {}


  } 
  

  function DTControl_DT_fGetSelected(aCell)
  { 
 
var iihour=document.all.DTControl_Dtablehour.value; 
var iiminute=document.all.DTControl_Dtableminute.value;
var iisecond=document.all.DTControl_Dtablesecond.value; 
var iOffset = 0;
var iYear = parseInt(document.all.DTControl_tbSelYear.value); 
var iMonth = parseInt(document.all.DTControl_tbSelMonth.value); 
aCell.bgColor = DTControl_gcBG;
 with (aCell.children["cellText"])
  { 
 var iDay = parseInt(innerText);
  if (color==DTControl_gcGray) iOffset = (Victor<10)?-1:1;
  	 iMonth += iOffset; 
  	 if (iMonth<1) { iYear--; iMonth = 12; } 
  	 else if(iMonth>12){iYear++; iMonth = 1;}
  	 }
  	  if(iihour.length==1)
  	  {
  	  iihour='0' + iihour;
  	  }
  	   if(iiminute.length==1)
  	  {
  	  iiminute='0' + iiminute;
  	  }
  	  if(iisecond.length==1)
  	  {
  	  iisecond='0' + iisecond;
  	  }
  	  
  	  
  	   if(iDay.toString().length==1)
  	  {
  	  iDay='0' + iDay;
  	  }
  	   if(iMonth.toString().length==1)
  	  {
  	  iMonth='0' + iMonth;
  	  }
  	  
  	    return '【' + iYear + '-' + iMonth + '-' + iDay + ' ' + iihour + ':' + iiminute + ':' + iisecond + '】';

  	  }
function DTControl_DT_fSetSelected(aCell){ 
var iihour=document.all.DTControl_Dtablehour.value; 
var iiminute=document.all.DTControl_Dtableminute.value;
var iisecond=document.all.DTControl_Dtablesecond.value; 
var iOffset = 0;
var iYear = parseInt(document.all.DTControl_tbSelYear.value); 
var iMonth = parseInt(document.all.DTControl_tbSelMonth.value); 
aCell.bgColor = DTControl_gcBG;
 with (aCell.children["cellText"]) { 
 var iDay = parseInt(innerText);
  if (color==DTControl_gcGray) iOffset = (Victor<10)?-1:1;
  	 iMonth += iOffset; 
  	 if (iMonth<1) { iYear--; iMonth = 12; } else if(iMonth>12){iYear++; iMonth = 1;}} DTControl_DT_fSetDate(iYear, iMonth, iDay, iihour, iiminute, iisecond);}


function DTControl_Point(iX, iY){
	this.x = iX;	
	this.y = iY;
	}


function DTControl_fBuildCal(iYear, iMonth) { var aMonth=new Array(); for(i=1;i<7;i++) 	aMonth[i]=new Array(i); var dCalDate=new Date(iYear, iMonth-1, 1); var iDayOfFirst=dCalDate.getDay(); var iDaysInMonth=new Date(iYear, iMonth, 0).getDate(); var iOffsetLast=new Date(iYear, iMonth-1, 0).getDate()-iDayOfFirst+1; var iDate = 1; var iNext = 1; for (d = 0; d < 7; d++)	aMonth[1][d] = (d<iDayOfFirst)?-(iOffsetLast+d):iDate++; for (w = 2; w < 7; w++) 	for (d = 0; d < 7; d++)		aMonth[w][d] = (iDate<=iDaysInMonth)?iDate++:-(iNext++); return aMonth;}

function DTControl_DT_fDrawCal(iYear, iMonth, iCellHeight, iDateTextSize) 
	{
	var WeekDay=new Array('日','一','二','三','四','五','六');
	var styleTD = " bgcolor='"+DTControl_gcBG+"' bordercolor='"+DTControl_gcBG+"' VALIGN='middle' align='center' height='"+iCellHeight+"' style='font:bold "+iDateTextSize+" 宋体;";
	
	with (document) 
		{	
		write("<tr>");	
	for(i=0; i<7; i++)	
		write("<TD "+styleTD+" color:#990000' >" + WeekDay[i] + "</td>");	
	write("</tr>"); 	
	for (w = 1; w < 7; w++) 
		{
		write("<tr>");	
	for (d = 0; d < 7; d++)
		{

write("<TD id=calCell "+styleTD+"cursor:hand;' onMouseOver=\"this.bgColor=DTControl_gcToggle;document.all.DTControl_DT_ct_ShowTD.innerHTML=DTControl_DT_fGetSelected(this);\" onMouseOut='this.bgColor=DTControl_gcBG' onclick='DTControl_DT_fSetSelected(this)'>");

write("<font id=cellText Victor='Liming Weng'> </font>");
write("</td>")
         }
write("</tr>");
}
}
}

function DTControl_DT_fUpdateCal(iYear, iMonth) 
{
 var myMonth = DTControl_fBuildCal(iYear, iMonth);
 var i = 0;

  for (w = 0; w < 6; w++)
  	 for (d = 0; d < 7; d++)
with (cellText[(7*w)+d])
{
Victor = i++;
if (myMonth[w+1][d]<0)
 {
 color = DTControl_gcGray;
 innerText = -myMonth[w+1][d];
 			}
 			else
 			{
 			color = ((d==0)||(d==6))?"red":"black";
 			innerText = myMonth[w+1][d];
 			if(innerText==DTControl_DtableinputDD){
 			color = "blue";
 			}
 			}
 			
 		}
 }
 				

 function DTControl_DT_fSetYearMon(iYear, iMon)
 {

  document.all.DTControl_tbSelMonth.options[iMon-1].selected = true; 

  for (i = 0; i < document.all.DTControl_tbSelYear.length; i++)
	 {
 	if (document.all.DTControl_tbSelYear.options[i].value == iYear)
		 {
 	document.all.DTControl_tbSelYear.options[i].selected = true; 
		 }
	 }


 	DTControl_DT_fUpdateCal(iYear, iMon);


 	} 
 	
 	function DTControl_DT_fPrevMonth() {
 	 var iMon = document.all.DTControl_tbSelMonth.value; 
 	 var iYear = document.all.DTControl_tbSelYear.value; 
 	 if (--iMon<1) {	
 	  iMon = 12;
 	  	 iYear--; 
 	  	 } 
 	  	 DTControl_DT_fSetYearMon(iYear, iMon);
 	  	 }

function DTControl_DT_fNextMonth(){ var iMon = document.all.DTControl_tbSelMonth.value; var iYear = document.all.DTControl_tbSelYear.value; if (++iMon>12) {	 iMon = 1;	 	 iYear++; } 	 DTControl_DT_fSetYearMon(iYear, iMon);}	

function fToggleTags(left1,top1,width1,height1){

if(left1==null || top1==null || width1==null || height1==null)
	{
	return false;
	}

	var theleft=left1;
	var thewidth=parseInt(replace(width1.toString(),'px',''));
	theleft=(replace(theleft.toString(),'px','')).toString();

	with (document.all.tags("SELECT")){ 
		for (i=0; i<length; i++) 
		{
			var obj=item(i);
			var thistop=DT_getPosition(obj).top;
			var thisleft=DT_getPosition(obj).left;
			if(thisleft>theleft && thisleft<(theleft + thewidth) && obj.name.indexOf('se_')>-1)
			{
				
item(i).style.visibility = "hidden"; 
			}
		
		}

			}
			}



function DTControl_DT_fSetHms(hh,mm,ss)
	{
		try
		{
document.all.DTControl_Dtablehour.selectedIndex=hh;
document.all.DTControl_Dtableminute.selectedIndex=mm;
document.all.DTControl_Dtablesecond.selectedIndex=ss;
		}
		catch (e)
		{
		}

}


function DTControl_DT_fPopCalendar(popCtrl, dateCtrl,YY,MM,DD,hh,mm,ss,mindt,maxdt){ 
event.cancelBubble=true; 
DTControl_DtableinputYY=YY;
DTControl_DtableinputMM=MM;
DTControl_DtableinputDD=DD;
DTControl_Dtableinputhh=hh;
DTControl_Dtableinputmm=mm;
DTControl_Dtableinputss=ss;
if(mindt!=null)//设置最小日期
	{
DTControl_tmpmindt=new Date((mindt).replace(/-/g,'/'));
	}

	if(maxdt!=null)//设置最大日期
	{
DTControl_tmpmaxdt=new Date((maxdt).replace(/-/g,'/'));
	}

DTControl_DT_gdCtrl = dateCtrl;
DTControl_DT_fSetYearMon(DTControl_DtableinputYY, DTControl_DtableinputMM);
DTControl_DT_fSetHms(DTControl_Dtableinputhh,DTControl_Dtableinputmm,DTControl_Dtableinputss); 
var DTControl_Point = DTControl_DT_fGetXY(popCtrl);
var divtop=0;
if(document.getElementById('DTable_SettledTableTitle'))
	{
	divtop=DTable_SettledTableTitle.scrollTop;
	}

with (document.all.DTControl_VicPopCal.style)
	{ 
	left=event.clientX;
	width = DTControl_VicPopCal.offsetWidth;	
	height = DTControl_VicPopCal.offsetHeight;	
	top=event.clientY;
	visibility = 'visible';
	} 	
	DTControl_VicPopCal.focus();}

function DTControl_DT_fTagInBound(aTag){ 
	with (document.all.DTControl_VicPopCal.style)
		{
		var l = parseInt(left);
		var t = parseInt(top); 
		var r = l+parseInt(width); 
		var b = t+parseInt(height);	
		var ptLT = DTControl_DT_fGetXY(aTag);	
		return !((ptLT.x>r)||(ptLT.x+aTag.offsetWidth<l)||(ptLT.y>b)||(ptLT.y+aTag.offsetHeight<t)); 
		}
		}

 function DTControl_DT_fGetXY(aTag)
 {
	
 var oTmp = aTag;
 var pt = new DTControl_Point(0,0); 
 var divtop=0;

 do { 
pt.x += oTmp.offsetLeft; 
pt.y += oTmp.offsetTop; 
oTmp = oTmp.offsetParent; 
    }
 while(oTmp.tagName!="BODY"); 
 return pt;
     }



 var gMonths=new  Array("&nbsp;1. ئاي","&nbsp;2. ئاي","&nbsp;3. ئاي","&nbsp;4. ئاي","&nbsp;5. ئاي","&nbsp;6. ئاي","&nbsp;7. ئاي","&nbsp;8. ئاي","&nbsp;9. ئاي","&nbsp;10. ئاي","11. ئاي","12. ئاي"); 
 with (document) 
	 {
		 write("<Div id='DTControl_VicPopCal' name='DTControl_VicPopCal' onclick='event.cancelBubble=true' style='POSITION:absolute;visibility:hidden;border:0px ridge;width:10;z-index:999;FILTER: progid:DXImageTransform.Microsoft.Shadow(Color=#333333,Direction=120,strength=5)'>");
		 
		 write("<table border='1' bgcolor='cccccc' cellspacing=\"1\" cellpadding=\"0\">");
		 
		 write("<tr>");
		 
		 write("<TD VALIGN='middle' align='center'><input type='button' name='PrevMonth' value='<' onClick='DTControl_DT_fPrevMonth()'>");
		 
		 write("&nbsp;<SELECT name='DTControl_tbSelYear' onChange='DTControl_DT_fUpdateCal(DTControl_tbSelYear.value, DTControl_tbSelMonth.value)' Victor='Won'>");
 
 for(i=parseInt(DTControl_tmpmindt.getFullYear().toString());i<=parseInt(DTControl_tmpmaxdt.getFullYear().toString());i++)	write("<OPTION value='"+i+"'>"+i+" يىلى</OPTION>");write("</SELECT>");
  write("&nbsp;<select name='DTControl_tbSelMonth' onChange='DTControl_DT_fUpdateCal(DTControl_tbSelYear.value, DTControl_tbSelMonth.value)' Victor='Won'>");
 
 for (i=0; i<12; i++)
 {
 write("<option value='"+(i+1)+"'>"+gMonths[i]+"</option>");
 }
 write("</SELECT>");
 write("&nbsp;<input type='button' name='PrevMonth' value='>' onclick='DTControl_DT_fNextMonth()'>");
 write("</td>");
 write("</tr><tr>");
 write("<TD align='center'>");
 write("<DIV style='background-color:teal'><table width='100%' border='0' cellspacing=\"1\" cellpadding=\"0\">");
 
 DTControl_DT_fDrawCal(DTControl_giYear, DTControl_giMonth, 12, 12);
 write("</table></DIV>");
 write("</td>");
 write("</tr><TR align='center'>");
 write("<td>");
 write ("&nbsp;<select name='DTControl_Dtablehour' Victor='Won' >");
 
 for(i=0;i<24;i++){write("<option value='" + i + "'>" + i + "</option>");}write("</select>");write("时&nbsp;<select name='DTControl_Dtableminute' Victor='Won'>");
 
 for(i=0;i<60;i++){write("<option value='" + i + "'>" + i + "</option>");}write("</select>");write("分&nbsp;<select name='DTControl_Dtablesecond'  Victor='Won'>");
 
 for(i=0;i<60;i++){write("<option value='" + i + "'>" + i + "</option>");}
 
 write("</select>");write(" 秒</td></tr><tr><td id='DTControl_DT_ct_ShowTD' align='center' style='cursor:hand;font:bold 12 宋体;color:#990000' bgcolor=#EEEEEE>&nbsp;</td></tr><tr><TD align='center'>");
 
 write("<span style='cursor:hand;font:bold 12 宋体' onclick='DTControl_DT_fSetDate(DTControl_giYear,DTControl_giMonth,DTControl_giDay,document.all.DTControl_Dtablehour.value,DTControl_Dtableminute.value,DTControl_Dtablesecond.value)' onMouseOver=\"this.style.color=DTControl_gcToggle;document.all.DTControl_DT_ct_ShowTD.innerHTML='【" + DTControl_giYear +"-" + DTControl_giMonth + "-" + DTControl_giDay + " ' + document.all.DTControl_Dtablehour.value + ':' + document.all.DTControl_Dtableminute.value + ':' + document.all.DTControl_Dtablesecond.value + '】'\" onMouseOut='this.style.color=0'>今天："+DTControl_giYear+"年"+DTControl_giMonth+"月"+DTControl_giDay+"日</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style='font-family: wingdings' title='关闭' onclick='DTControl_DT_fHideCalendar();' style='cursor:hand;'>x</span>");
 
 write("</td></tr>");write("</TABLE></Div>");

 }
  



function initDTControl_pop()
{
 DTControl_popTop=0;
 DTControl_popWidth = 250;
 DTControl_popheight = 120;
 TimerNum = "30";
}



function DTControl_popmsg(Title,msgstr)
{

initDTControl_pop();

var winstr="<table dir=ltr width=" + DTControl_popWidth + " height=" + DTControl_popheight;
if(DTControl_TableStyle!="")
{
winstr+=" " + DTControl_TableStyle;
}

winstr+="><tr><td height=" + DTControl_popTitleHeight + " bgcolor=" + DTControl_popTitleBgcolor + ">" + Title + "</td></tr><tr><td align=center><table width=90% height=180 border=0>";
winstr+="<tr><td valign=top style=font-size:12px;>"+msgstr+"</td></tr></table></td></tr></table>";
DTControl_oPopup.document.body.innerHTML = winstr;DTControl_popshow();
}


function DTControl_popshow()
{
if(DTControl_popTop>1720)
{
clearTimeout(mytime);
DTControl_oPopup.hide();
return;
}
else if(DTControl_popTop<DTControl_popheight)
{
DTControl_oPopup.show(screen.width-(DTControl_popWidth),screen.height,DTControl_popWidth,DTControl_popTop*(240/DTControl_popheight));
}
DTControl_popTop+=5;
var mytime=setTimeout('DTControl_popshow();',TimerNum);
}


