//var aa= document.all.tags("A");
//for (var i=0;i<aa.length;i++) {
//        aa[i].style.behavior="url('/pvcount/count.htc')"; 
//}

var baseurl="http://edm.gd.sina.com.cn/pvcount/";
function do_sinaPv_click(El){

	if (El.tagName.toUpperCase() != "A") {
		actionUrl = baseurl + "?error=1";
	} else {
		actionUrl = baseurl + "?id=" + El.id + "&url=" + El.href + "&title=" + El.innerHTML;
	}

	var f = frames["pvcount"];
	if ((f == undefined) || ! f) {
		return true;
	} else {
		f.location.replace(actionUrl);
		return true;
	}
}
