function showrows(i){ var oTab=document.getElementById('news');var aRows=oTab.rows;for(var c=0;c<aRows.length;c++){
  var str="none";if(c+1>i*10-10&&c+1<=i*10)str="block";aRows(c).style.display=str;}}

function button(onclick, id, alt, image, tar)
{
	document.write(
//alert(
	"<a href='"+onclick+"' target='"+tar+"'>"+
	"<img border='0' alt='"+alt+"' "+
		"id='"+id+"' "+
		"src='imgbut/"+image+"A.gif' "+
		"onmouseover=\"FP_swapImg(1,0,\'"+id+"\',\'imgbut/"+image+"B.gif\')\"   "+
		"onmouseout=\"FP_swapImg(1,0,\'"+id+"\',\'imgbut/"+image+"A.gif\')\"   "+
		"onmousedown=\"FP_swapImg(1,0,\'"+id+"\',\'imgbut/"+image+"C.gif\')\"   "+
		"onmouseup=\"FP_swapImg(1,0,\'"+id+"\',\'imgbut/"+image+"B.gif\')\"   "+
	"/></a>");
}
function FP_swapImg() {//v1.0
	var doc=document,args=arguments,elm,n;
	doc.$imgSwaps=new Array(); 
	for(n=2; n<args.length;n+=2) 
	{
		elm=FP_getObjectByID(args[n]); 
		if(elm) 
		{ 
			doc.$imgSwaps[doc.$imgSwaps.length]=elm;
			elm.$src=elm.src; 
			elm.src=args[n+1]; 
		}
	}
}
function FP_getObjectByID(id,o) {//v1.0
	var c,el,els,f,m,n; 
	if(!o)
		o=document;
	if(o.getElementById) 
		el=o.getElementById(id);
 	else if(o.layers) 
 		c=o.layers; 
 	else if(o.all) 
 		el=o.all[id]; 
 	if(el)
 		return el;
 	if(o.id==id || o.name==id) 
 		return o; 
 	if(o.childNodes) 
 		c=o.childNodes; 
 	if(c)
 		for(n=0; n<c.length; n++) 
 		{ 
 			el=FP_getObjectByID(id,c[n]); 
 			if(el) 
 				return el; 
 		}
 	f=o.forms;
 	if(f) 
 		for(n=0; n<f.length; n++)
 		{
 			els=f[n].elements;
 			for(m=0; m<els.length; m++)
 			{
 				el=FP_getObjectByID(id,els[n]);
 				if(el) 
 					return el; 
 			} 
 		}
	return null;
}