var global_counter=0;
function add_foto_frame(){
	global_counter++;
	str = "<div id='foto_frame_"+global_counter+"'>";
	str+="<input class='add_foto' type='file' name='foto[]' enctype='multipart/form-data' />&nbsp;";
	str+="<input class='add_foto' type='text' name='filetitle[]'>&nbsp;";
	str+="<a href='#' onclick='del_foto_frame("+global_counter+"); return false;'>del</a><br />";
	$("#type_foto").append(str);
}
function del_foto_frame(frame){
	if (iddiv = $("#foto_frame_"+frame)){
		iddiv.empty();
	}
}
