function printpage(pageno)
{

	var i = 1 ;
	var n = 6 ;
	var filename = "";

	// ** font start
	document.writeln(' <font face="Arial, Helvetica, sans-serif" size="2">Page : ');

	for (i=1;i<=n;i++)
	{
		if (i==pageno)
		{
			document.writeln( i );
	  }
	  else
	  {
      filename = "all_awards_0" + i + "p.htm" ;
	    document.writeln(' <a href="' + filename + '">' + i + '</a>' );
	  }

  }

  // ** font end
  document.writeln(' </font><br><br> ');

  // ** prev arrow

  if ( pageno > 1 )
  {
	   i = pageno - 1;
	   filename = "all_awards_0" + i + "p.htm" ;

	   document.write('<a href="' + filename + '">');
     document.write('<img src="icon/arrowleft.jpg" width="40" height="25" border="0" alt="Previous Page">');
     document.write('</a>');
     document.writeln('');

  }

  // ** next arrow
  if ( pageno < n )
  {
	   i = pageno + 1;
	   filename = "all_awards_0" + i + "p.htm" ;

	   document.write('<a href="' + filename + '">');
     document.write('<img src="icon/arrowright.jpg" width="40" height="25" border="0" alt="Next Page">');
     document.write('</a>');
     document.writeln('');

  }

}

