var step = 4;
function prorgt(){
	while(document.getElementById("proccc").scrollLeft<810){
		document.getElementById("proccc").scrollLeft = document.getElementById("proccc").scrollLeft+step;
	}
	document.getElementById("proccc").scrollLeft = 810;
	document.getElementById("srbtn").style.backgroundImage = "url(../templets/images/righta.gif)";
	document.getElementById("slbtn").style.backgroundImage = "url(../templets/images/leftb.gif)";
};
function prolft(){
	while(document.getElementById("proccc").scrollLeft>0){
		document.getElementById("proccc").scrollLeft = document.getElementById("proccc").scrollLeft-step;
	}
	document.getElementById("proccc").scrollLeft = 0;
	document.getElementById("srbtn").style.backgroundImage = "url(../templets/images/rightb.gif)";
	document.getElementById("slbtn").style.backgroundImage = "url(../templets/images/lefta.gif)";
};
window.onload = function(){
	document.getElementById("f1").focus();
}; 


