﻿var taget_obj = ""
function Digg(divId,aid){
	taget_obj = document.getElementById(divId+''+aid);
	makeRequest('/rgbword/plus/digg/digg.asp?id=' + aid + '&rand=' + Math.random(),"Diggreturn","get","");
}
function Diggreturn(){
	if (http_request.readyState == 4) {
		if (http_request.status == 200) {
			taget_obj.innerHTML = http_request.responseText;
		}
	}
	
}

function doZoom(size){
	document.getElementById('area').style.fontSize=size+'px'
}