function OverImage(src,id){
	if(src!=""){
		if(document.getElementById("bigimg"+id)==null){
		var image = new Image();
		image.id="bigimg"+id;
		//image.width = 170;
		//image.height = 150;
		image.src = src;
		
		document.getElementById("usermoreinf2"+id).appendChild(image)
		}
		document.getElementById(id).style.display='block';
	}
}
function OutImage(id){
	document.getElementById(id).style.display='none';
}

function OverbgImage(obj,src,id){
	obj.className='commentover';
	if(src!=""){
		if(document.getElementById(id)!=null){
		document.getElementById(id).style.width='50px';
		document.getElementById(id).style.backgroundImage="url("+src+")"; 
		}
	}
	
}
function OutbgImage(obj,id){
	obj.className='comment';
	if(document.getElementById(id)!=null){
		document.getElementById(id).style.width='1px';
	}
}


