// JavaScript Document
function innerBOX(boxname,div)
{
	var box;
	box='<input  type="file" name="'+boxname+'">';
	document.getElementById(div).innerHTML=box;
}
function clearBOX(div)
{ 
	document.getElementById(div).innerHTML='';
}
function change_bg(div_left,div_mid,div_right,img_left,img_mid,img_right)
{ 
	document.getElementById(div_left).src=img_left; 
	document.getElementById(div_mid).style.background='url('+img_mid+')';
	document.getElementById(div_right).src=img_right;
}
function clear_change_bg(div_left,div_mid,div_right,img_left,img_mid,img_right)
{ 
	document.getElementById(div_left).src=img_left; 
	document.getElementById(div_mid).style.background='url('+img_mid+')';
	document.getElementById(div_right).src=img_right;
}