var contorImgs=1;
function addMoreImgsProduct(div) {
	//var chlidsNumber=document.getElementById(div).getElementsByClassName("parent").length;
	if (contorImgs<10) {
		var newInput=document.createElement('div');
		newInput.id='div_'+contorImgs;
		newInput.style.marginTop='5px';
		//newInput.className='parent';
		document.getElementById(div).appendChild(newInput);
		var value='';
		value+='<div class="floatLeft">';
		value+='<input type="file" name="image[]"/>';
		value+='</div>';
		value+='<div class="floatLeft" style="padding-left:5px;">';
		value+='<img src="images/delicon.gif" onclick="delImgsProduct(\'moreImgs\',\'div_'+contorImgs+'\')" width="16" height="16" alt="Add more images" style="cursor:pointer;"/>';
		value+='</div>';
		value+='<div class="clear"></div>';
		newInput.innerHTML=value;
		contorImgs++;
	} else {
		alert('You can add only 10 images!');
	}
}
function delImgsProduct(div,id) {
	document.getElementById(div).removeChild(document.getElementById(id));
	contorImgs--;
}
