function getElement(id)
{
	if(document.all)
	 return document.all[id];
	else
	 return document.getElementById(id);
}
image_1 = new Image();
if(getElement('img_box_'+uid))
	image_1.src = getElement('img_box_'+uid).src;
	
image_2 = new Image();
if(getElement('ce_img_box_'+uid))
	image_1.src = getElement('ce_img_box_'+uid).src;

var height = (60-image_1.height)/2;
var width = (60-image_1.width)/2;

if(width>15)
	width=5;
if(height>15)
	height = 5;

if(getElement('pic_box_'+uid))
{
	getElement('pic_box_'+uid).style.paddingTop = height;
	getElement('pic_box_'+uid).style.paddingLeft = width;
}

if(getElement('ce_pic_box_'+uid))
{
	getElement('ce_pic_box_'+uid).style.paddingTop = height;
	getElement('ce_pic_box_'+uid).style.paddingLeft = width;
}