function drowComments()
{
	var html='<table celspadding=2 style="border:1px solid #aaaaaa"><tr>';
	for(var i=1;i<10;i++)
	{
		if(i!=1 && (i%3)==1)
			html+='</tr><tr>';
		if(i==1)
		html+='<td valign=top onclick=selectComment(this,'+i+') id=com'+i+' class=sel1 style="height:70px">'+
		'<img src="'+SERVERURL+'/100percent/'+i+'.gif"  style="width:220px;" /></td>';
		else
		html+='<td valign=top onclick=selectComment(this,'+i+') id=com'+i+' class=friend_off1 style="height:70px">'+
		'<img src="'+SERVERURL+'/100percent/'+i+'.gif"  style="width:220px;" /></td>';
	}
	html+='</tr></table>';
	document.getElementById("for_preview").innerHTML=html;
	
}

function selectComment(obj,i)
{
	if(SelectedComment)
		document.getElementById("com"+SelectedComment).className="friend_off1"
	obj.className="sel1";
	SelectedComment=i;
}