var junk=new Array();

//0:title,1:link,2:source,3:summary,4:picture,5:width,6:height
junk[0]=new Array('China plans online gambling crackdown','http://www.phayul.com/news/article.aspx?id=26585','','China plans to crack down on the online gambling industry, including the banks and websites that support it, the Ministry of Public Security said in a st', '', '0', '0');junk[1]=new Array('Google warns copycat website','http://www.phayul.com/news/article.aspx?id=26584','','Google has warned a copycat Chinese website to stop using a logo that resembles the US internet giant\'s or face possible legal', '', '0', '0');junk[2]=new Array('U.S.-China Friction: Why Neither Side Can Afford a Split','http://www.phayul.com/news/article.aspx?id=26583','','It hasn\'t been a banner few weeks for U.S.-China relations. In mid-January, Google announced that it was contemplating pulling out of China because of rep', '', '0', '0');junk[3]=new Array('His Holiness the Dalai Lama to recieve freedom award in Cincinnati','http://www.phayul.com/news/article.aspx?id=26578','','National Underground Railroad Freedom Center in Cincinnati, Ohio, has selected the 1989 Nobel Peace Prize winner for the award that would be conferred on him in October this', '', '0', '0');junk[4]=new Array('Bihar CM in Dharamsala to meet the Dalai Lama - updated','http://www.phayul.com/news/article.aspx?id=26574','','Bihar Chief minister Nitish Kumar is in Dharamsala to meet with the Tibetan leader His Holiness the Dalai Lama. The CM of the Indian state where several holy si', '1002081153118H.jpg', '92', '110');junk[5]=new Array('Nepali police arrest 5 Tibet bound Tibetans','http://www.phayul.com/news/article.aspx?id=26572','','Nepali Police yesterday arrested five Tibetans including a woman at the Boudhanath temple area, an area with strong concentration of Tibetan ref', '', '92', '110');junk[6]=new Array('China opposes Nobel for jailed dissident, lawmakers back Liu Xiabo','http://www.phayul.com/news/article.aspx?id=26569','','China has said it opposed the awarding of the prestigious Nobel Peace Prize to one of the most prominent Chinese dissidents, Liu Xiabo, as legislators and', '', '92', '110');junk[7]=new Array('Tibet\'s Star Activist Warns Obama','http://www.phayul.com/news/article.aspx?id=26568','','As the president prepares to meet with the Dalai Lama, controversial Tibetan activist Tenzin Tsundue talks about why Obama must stay strong with China, Google’s shamefu', '1002061259350Q.jpg', '99', '110');junk[8]=new Array('Wife appeals for Chinese rights defender','http://www.phayul.com/news/article.aspx?id=26566','','The wife of one of China\'s best-known rights advocates says she is unable to sleep fearing for his safety one year after he vanished, as US lawmakers nomina', '100206113232EC.jpg', '110', '82');junk[9]=new Array('Chicken parts join menu of U.S.-China disputes','http://www.phayul.com/news/article.aspx?id=26564','','China said on Friday it will slap heavy anti-dumping duties on U.S. chicken parts, a move likely to aggravate trade ties between two of the world\'s most importan', '100206110629TF.jpg', '110', '75');
if(arrLength>10)
{
	arrLength=10;
}

document.write("<table width=" + tWidth + " bgColor=" + bgColor + " cellpadding=" + tPadding + ">");
for(i=0; i<=arrLength-1; i++)
{

	document.write("<tr>");
	document.write("<td>");

	//SHOWS ARTICLE TITLE
	document.write("<a target=\"_blank\" href=\"" + junk[i][1] + "\"><font face=\"" + AtfType + "\" color=" + AtfColor + " size=" + AtfSize + ">");

	if(AtB) { document.write("<b>"); }
	if(AtI) { document.write("<i>"); }
	document.write(crop_text(junk[i][0], AtLen));
	if(AtI) { document.write("</i>"); }
	if(AtB) { document.write("</b>"); }

	document.write("</font></a>");


	//SHOWS ARTICLE SOURCE
	if(ShowASource && junk[i][2]!="-")
	{
		document.write("<br><font face=\"" + AsfType + "\" color=" + AsfColor + " size=" + AsfSize + ">");
		if(AsB) { document.write("<b>"); }
		if(AsI) { document.write("<i>"); }
		if(AsU) { document.write("<u>"); }
		document.write(junk[i][2]);
		if(AsU) { document.write("</u>"); }
		if(AsI) { document.write("</i>"); }	
		if(AsB) { document.write("</b>"); }
	}	

	//SHOWS ARTICLE SUMMARY
	if(ShowASummary)
	{
		document.write("<br><font face=\"" + AsumfType + "\" color=" + AsumfColor + " size=" + AsumfSize + ">");
		
		//SHOW PICTURE
		if(ShowPic && junk[i][4]!="")
		{
			document.write("<IMG height=" + junk[i][6] + " width=" + junk[i][5] + " hspace=" + SpHS + " vspace=" + SpVS + " border=" + SpB + " src=\"http://www.phayul.com/images/thumbnails/news/articles/" + junk[i][4] + "\"  align=left>");
		}

		if(AsumB) { document.write("<b>"); }
		if(AsumI) { document.write("<i>"); }
		if(AsumU) { document.write("<u>"); }
		document.write(junk[i][3]);
		if(AsumU) { document.write("</u>"); }
		if(AsumI) { document.write("</i>"); }	
		if(AsumB) { document.write("</b>"); }
	}	

	document.write("</td></tr>");

}	
document.write("<tr><td><a href=\"http://www.phayul.com\" target=\"_blank\"><font face=\"Arial, Helvetica, sans-serif\" color=\"#999999\" size=\"1\">News powered by Phayul.com</font></a></td></tr>");
document.write("</table>");


function crop_text(text, max_length) {
  // If the string is already small enough, return it unscathed
  if (text.length <= max_length) { return( text ); }

  // If the user has specified a length of 0, it means he wants the whole thing
  if (max_length == 0) { return( text ); }

  // Start looking for a space, leaving space for an elipsis on the end
  var test_length = (max_length - 3);
  if (test_length < 1) { return( '...' ); }   // max_length too small
  while (text.charAt(test_length) != ' ') {
    test_length--;

    // If we didn't find any spaces to break on, return the string broken at max_length
    if (test_length == 0) { return( text.substring(0, max_length - 3) + '...' ); }
  }

  return text.substring(0, test_length) + '...';
}
