function drowComments()
{
	var html='<table celspadding=2 style="border:1px solid #cc0000;background:#F3E4E7;"><tr>';
	for(var i=1;i<=9;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 ><div style="width:220px;height:200px;overflow:hidden;background:#fff;">'+
		'<img src="'+SERVERURL+'/100percent/'+i+'.gif"  style="height:200px;" /></div></td>';
		else
		html+='<td valign=top onclick=selectComment(this,'+i+') id=com'+i+
		' class=friend_off1 >'+
		'<div style="width:220px;height:200px;overflow:hidden;background:#fff;"><img src="'+
		SERVERURL+'/100percent/'+i+'.gif"  style="height:200px;" /></div></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;
}