function noImage(bg_id,image_name){
	document.all[bg_id].background=image_name;
}

function removeImg(table_name, image_fieldname, index_fieldname, record_id, file_name, image_path){
	var m=confirm('Are you sure you want to remove this image?');
	
	if(m)
		window.open('deleteImages.asp?Table='+table_name+'&ImgField='+image_fieldname+'&Field='+index_fieldname+'&ID='+record_id+'&FileName='+file_name+'&ImgPath='+image_path,'delImage','top=10,left=10,width=400,height=80,status=0,location=0');
}
