function pageGo(thispage,rspgcount,SD,totalRecord,sc1,sc2,sk,TableWidth,pageGrpCellHeight,linkPath,pageGrpbgColor)
{
	//ÇöÀçÆäÀÌÁö, ÆäÀÌÁö´ç·¹ÄÚµå¼ö, ÆäÀÌÁö±×·ì³»ÆäÀÌÁöµé¼ö, ÀüÃ¼·¹ÄÚÆ®°ª, °Ë»öÇ×¸ñ1, °Ë»öÇ×¸ñ2,°Ë»ö¾î,Ç¥³ÐÀÌ,³ôÀÌ,¸µÅ©
	//SD ´Â ÆäÀÌÁö±×·ìÀÌ ¸î°³¾¿ ÀÌ·ç¾îÁö´Â°¡ÀÇ °ª
	SD=(SD=='') ? 10 : parseInt(SD);
	var ImgPath="/images/pageTable/"
	var currPage,nextPG, nextPGLink, prevPG, prevPGLink,i,pagelink;
	var pagelink="";
	var pageGrpSpace=5
	var pageGrpAlign="center"
	var pageGrpStyle="font:7pt verdana;"
	//pageGrpCellHeight="30"
	pageGrpbgColor=(pageGrpbgColor=="") ? "#FFFFFF" : pageGrpbgColor
	

	document.write('<table border=0 width='+TableWidth+' cellpadding=0 cellspacing=0 align=center>');
	document.write('	<tr>');
	document.write('		<td width='+TableWidth+' height='+pageGrpSpace+'></td>');
	document.write(' </tr>');
	document.write('	<tr>');
	document.write('		<td width=100% align='+pageGrpAlign+' style="'+pageGrpStyle+'" valign=middle height='+pageGrpCellHeight+' bgcolor='+pageGrpbgColor+' background=""><!--<img src="'+ImgPath+'pggo.gif" border=0> <font color=#0033CC>Page Go</font> : //-->');

	if ((thispage % SD) == 0)
	{
		currPage = thispage -1
	}
	else
	{
		currPage = thispage
	}

	nextPG =  SD*Math.floor(currPage / SD)+SD + 1

	if(nextPG >= rspgcount)
	{
		nextPGLink = rspgcount
	}
	else
	{
		nextPGLink = nextPG
	}
	
	prevPGLink =(nextPG - SD*2)
	prevPG =(nextPG - SD)
	
	if (prevPGLink < 1)
	{
		prevPGLink = 1
	}

	if (prevPG < 1)
	{
		prevPG = 1
	}

	if (thispage !== 1)
	{
		document.write('<a href="'+ linkPath + 'pg=1' + '&sc1=' + sc1 + '&sc2=' + sc2 + '&sk=' + sk + '"><img src="'+ ImgPath + 'firstPageA.gif" border=0></a>&nbsp;');
	}
	else
	{
		document.write('<img src="' + ImgPath + 'firstPageB.gif" border=0>&nbsp;');
	}
	
	
	if (Math.floor(thispage) <= SD)
	{
		document.write('<img src="' + ImgPath + 'prevPageB.gif" border=0>&nbsp;');
	}
	else
	{
		document.write('<a href="' + linkPath + 'pg=' + prevPGLink + '&sc1=' + sc1 + '&sc2=' + sc2 + '&sk=' + sk + '"><img src="' + ImgPath + 'prevPageA.gif"  border=0></a>&nbsp;');
	}

	for(i=prevPG;i<=nextPG-1;i++)
	{
		if(i <= rspgcount)
		{
			if(Math.floor(thispage) == i)
			{
				pagelink += ' [<a href="' + linkPath + 'pg=' + i + '&sc1=' + sc1 + '&sc2=' + sc2 + '&sk=' + sk + '"  class=all><b>' + i + '</b></a>] '
			}
			else
			{
				pagelink +=' <a href="' + linkPath + 'pg=' + i + '&sc1=' + sc1 + '&sc2=' + sc2 + '&sk=' + sk + '"  class=aller>' + i + '</a> '
			}
		}
	}
	
	document.write(pagelink);

	if(Math.floor(nextPGLink) == rspgcount)
	{
		document.write('<img src="' + ImgPath + 'nextPageB.gif" border=0>&nbsp;');
	}
	else
	{
		document.write('<a href="' + linkPath + 'pg=' + nextPGLink + '&sc1=' + sc1 + '&sc2=' + sc2 + '&sk=' + sk + '"><img src="' + ImgPath + 'nextPageA.gif" border=0></a>&nbsp;');
	}

	if(Math.floor(thispage) !== rspgcount)
	{
		document.write('<a href="' + linkPath + 'pg=' + rspgcount + '&sc1=' + sc1 + '&sc2=' + sc2 + '&sk=' + sk + '"><img src="' + ImgPath + 'endPageA.gif" border=0></a>&nbsp;');
	}
	else
	{
		document.write('<img src="' + ImgPath + 'endPageB.gif" border=0>');
	}
	document.write('&nbsp;&nbsp;&nbsp;&nbsp;[ '+thispage+' / '+rspgcount+'&nbsp;&nbsp; Total '+totalRecord+' ]</b>');
	document.write('</td></tr></table>');

}

