	document.choiceForm.choiceIsShown.value=0;
	toppix=125;
	rightpix=0;
	self.onError=null;
if (document.getElementById('choice').style.top==''){cifr=0}else{
cifr=document.getElementById('choice').style.top.substring(0,document.getElementById('choice').style.top.length-2);
}
if (document.getElementById('choice').style.right==''){cifrR=0}else{
cifrR=document.getElementById('choice').style.right.substring(0,document.getElementById('choice').style.right.length-2);
}

function checkY() {
if(cifr!=toppix+document.body.scrollTop && document.choiceForm.rollchoice.value == 1){
percent = .1 * (toppix+document.body.scrollTop - cifr);
if(percent > 0) percent = Math.ceil(percent);
else percent = Math.floor(percent);
cifr=cifr+percent;
document.getElementById('choice').style.top = cifr;
}
if(cifrR!=rightpix+document.body.scrollLeft && document.choiceForm.rollchoice.value == 1){
percentR = .1 * (rightpix+document.body.scrollLeft - cifrR);
if(percentR > 0) percentR = Math.ceil(percentR);
else percentR = Math.floor(percentR);
cifrR=cifrR+percentR;
document.getElementById('choice').style.right = cifrR;
}
}
if(1 == 1) {action = window.setInterval("checkY()",1)}

function checkPanel(){
if(document.choiceForm.goot.value!='1' && document.choiceForm.goot.value!='dontcare'){
document.choiceForm.upstype.style.background="#888888";
document.choiceForm.upstype.disabled=true;
document.choiceForm.reservPower.style.background="#888888";
document.choiceForm.reservPower.disabled=true;
document.choiceForm.mounting19.style.background="#888888";
document.choiceForm.mounting19.disabled=true;
}else{
document.choiceForm.upstype.style.background="";
document.choiceForm.upstype.disabled=false;
document.choiceForm.reservPower.style.background="";
document.choiceForm.reservPower.disabled=false;
document.choiceForm.mounting19.style.background="";
document.choiceForm.mounting19.disabled=false;
}
}
