function display_transform_div(src_div,dst_div,sender_li,title){	
var cot = 1;
while(document.getElementById("list" + cot.toString()) != null)
{
	document.getElementById(src_div).innerHTML=document.getElementById(dst_div).innerHTML;	
	document.getElementById("list"+cot.toString()).style.backgroundImage = "url(images/showing_img.gif)";	
	document.getElementById("title"+cot.toString()).style.color = "black";
	cot++;
}
sender_li.style.backgroundImage = "url(images/bg_pro_class_blk.jpg)";
document.getElementById(title).style.color = "white";
}

