function page(id,all) {
	for (i=1; i<=all; i++) {
		if (i==id) {
			document.getElementById('page'+i).style.display="inline";
			document.getElementById('tag'+i).style.fontWeight="bold";
			document.getElementById('tag'+i).style.color="#FFF";
		} else {
			document.getElementById('page'+i).style.display="none";
			document.getElementById('tag'+i).style.fontWeight="normal";
			document.getElementById('tag'+i).style.color="#AF6A5A";
		}
	}
}

function popUp(url,name,w,h,s,r,t,m){
	var p="height="+h+",width="+w+",scrollbars="+s+",resizable="+r+",toolbar="+t+",menubar="+m;
	var w=window.open(url,name,p);
}