var previousPageSelection=1;var currentPageSelection=1;var maxNumberProducts=5;function selectionPage(c){xmlHttpSelection=GetXmlHttpObject();previousPageSelection=currentPageSelection;if(previousPageSelection=="all"&&c=="all"){currentPageSelection=1}else{currentPageSelection=c}if(currentPageSelection!="all"){var b=currentPageSelection*maxNumberProducts;var a=(currentPageSelection*maxNumberProducts)-4}else{var b=100;var a=1}if(xmlHttpSelection==null){return}xmlHttpSelection.onreadystatechange=selectionCallBack;xmlHttpSelection.open("GET","_selection.cfm?startRow="+a+"&maxRows="+b,true);xmlHttpSelection.send(null)}function selectionCallBack(){if(xmlHttpSelection.readyState==4||xmlHttpSelection.readyState=="complete"){if(previousPageSelection!="all"){document.getElementById("page_selection_"+previousPageSelection).className=""}if(currentPageSelection!="all"){document.getElementById("page_selection_"+currentPageSelection).className="ici_"}document.getElementById("selection_content").innerHTML=xmlHttpSelection.responseText}};
