/* The copy right is belong to idealhome.com.tw
	 Author= Arthur Chang	 (張榮庭)
	 this document created day 2008/07/18
 */
/*
 * prerequisite : GenericHTMLObjOrganizationFunc.js
 */

function  PageCounter(){
	this.length = 6;
}

PageCounter.prototype.converNumToImgs= function(num, container, kindofImage){
	var tempnum = Math.pow(10,(this.length)) + parseInt(num);	
	tempnum = tempnum + "";
	var tmptable = document.createElement('div'); //  container
	if(kindofImage !="black"){
		tmptable.style.textAlign = "center";
	}
	for(var i = 1; i < tempnum.length ; i++){
		tmptable.appendChild(this.getImgTagWithImageNumber(tempnum.substring(i,i+1), kindofImage));
	}
	container.innerHTML ="";
	container.appendChild(tmptable);	
}


PageCounter.prototype.getImgTagWithImageNumber= function(num, kind){
	var obj = document.createElement('img');
	var scr;
	var rootpath ="images/";
	if(kind =="black"){
		obj.src = rootpath + "counter_b" + num + ".jpg";
	}else{
		obj.src = rootpath + "counter_" + num + ".jpg";
		obj.style.paddingRight ="0px";
	}
	
	//obj.style.width = "15px";
	obj.style.height= "20px";

	return obj;
}

