
function doPgLoop(){
	var i = 1;
	while (i <= pg_col){
		if(i == pg) document.write('<option selected="selected" value="'+i+'">'+i+'&nbsp;من&nbsp;'+pg_col+'</option>'); 
		else document.write('<option value="'+i+'">'+i+'&nbsp;من&nbsp;'+pg_col+'</option>');
	i++;
	}
}

document.write('<td class="f_menus"><b>الصفحة&nbsp;:<br /></b>');
document.write('<select name="pg_num" size="1" onchange="form_pg(this.options[this.selectedIndex].value);">');
	doPgLoop();
document.write('</select></td>');
